GUI: Bugfixes

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4105 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
John Peterson
2009-08-30 10:01:45 +00:00
parent 1e8fabe521
commit 44847c2ee3
5 changed files with 54 additions and 58 deletions

View File

@ -110,6 +110,7 @@ class CFrame : public wxFrame
wxWindow * GetWxWindowHwnd(HWND);
#endif
wxWindow * GetNootebookPage(wxString);
void AddRemoveBlankPage();
void OnNotebookPageClose(wxAuiNotebookEvent& event);
void OnAllowNotebookDnD(wxAuiNotebookEvent& event);
void OnNotebookPageChanged(wxAuiNotebookEvent& event);
@ -181,6 +182,7 @@ class CFrame : public wxFrame
void PopulateToolbarAui(wxAuiToolBar* toolBar);
void RecreateToolbar();
void CreateMenu();
wxPanel *CreateEmptyPanel();
#ifdef _WIN32
// Override window proc for tricks like screensaver disabling
@ -277,16 +279,4 @@ class CFrame : public wxFrame
};
class CEmptyPanel : public wxPanel
{
public:
CEmptyPanel(
wxWindow* parent,
wxWindowID id = wxID_ANY
);
private:
DECLARE_EVENT_TABLE();
};
#endif // __FRAME_H_