Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
22
Src/Wasabi/api/wnd/deactivatemgr.h
Normal file
22
Src/Wasabi/api/wnd/deactivatemgr.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
#ifndef __APPDEACTIVATIONMGR_H
|
||||
#define __APPDEACTIVATIONMGR_H
|
||||
|
||||
#include <bfc/ptrlist.h>
|
||||
|
||||
class ifc_window;
|
||||
|
||||
class AppDeactivationMgr {
|
||||
|
||||
public:
|
||||
|
||||
static int is_deactivation_allowed(ifc_window *w);
|
||||
static void push_disallow(ifc_window *w);
|
||||
static void pop_disallow(ifc_window *w);
|
||||
static void setbypass(int i);
|
||||
|
||||
private:
|
||||
static PtrList<ifc_window> list;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue