-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQuickHelpDialog.h
53 lines (40 loc) · 1.25 KB
/
QuickHelpDialog.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/***************************************************************
* Plugin: XPMEditor for Code::Blocks
* Name: QuickHelpDialog.h
* Purpose: a dialog box for displaying help - definition
* Author: Seb ([email protected])
* Created: 2009-04-23
* Copyright: Seb ()
* License: GPL 3.0
**************************************************************/
#ifndef QUICKHELPDIALOG_H
#define QUICKHELPDIALOG_H
//(*Headers(QuickHelpDialog)
#include "scrollingdialog.h"
class QuickHelpPanel;
class wxBoxSizer;
class wxButton;
//*)
class QuickHelpDialog: public wxScrollingDialog
{
public:
QuickHelpDialog(wxWindow* parent,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
virtual ~QuickHelpDialog();
//(*Declarations(QuickHelpDialog)
wxButton* Button1;
QuickHelpPanel* QuickHelpPanel1;
//*)
protected:
//(*Identifiers(QuickHelpDialog)
static const long ID_QUICKHELPPANEL;
static const long ID_BUTTON1;
//*)
//(*Handlers(QuickHelpDialog)
void OnButtonCloseClick(wxCommandEvent& event);
void OnClose(wxCloseEvent& event);
//*)
protected:
void BuildContent(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& size);
DECLARE_EVENT_TABLE()
};
#endif