Took anonymous class out of wxHtmlHelpFrame; corrected some typos
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3640 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -50,8 +50,7 @@ typedef struct _IMAGEN
|
|||||||
#define E_FORMATO 1 /* error in gif header */
|
#define E_FORMATO 1 /* error in gif header */
|
||||||
#define E_MEMORIA 2 /* error allocating memory */
|
#define E_MEMORIA 2 /* error allocating memory */
|
||||||
|
|
||||||
|
class WXDLLEXPORT wxGIFDecoder
|
||||||
class wxGIFDecoder
|
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
/* logical screen */
|
/* logical screen */
|
||||||
|
@@ -55,6 +55,17 @@ enum {
|
|||||||
wxID_HTML_HELPFRAME // the id of wxHtmlHelpController's helpframe
|
wxID_HTML_HELPFRAME // the id of wxHtmlHelpController's helpframe
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class WXDLLEXPORT wxHtmlHelpFrameCfg
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
wxHtmlHelpFrameCfg() {};
|
||||||
|
long x, y, w, h;
|
||||||
|
long sashpos;
|
||||||
|
bool navig_on;
|
||||||
|
int style; // flags given to wxHtmlHelpFrame ctor
|
||||||
|
wxString titleformat;
|
||||||
|
};
|
||||||
|
|
||||||
class WXDLLEXPORT wxHtmlHelpFrame : public wxFrame
|
class WXDLLEXPORT wxHtmlHelpFrame : public wxFrame
|
||||||
{
|
{
|
||||||
DECLARE_DYNAMIC_CLASS(wxHtmlHelpFrame)
|
DECLARE_DYNAMIC_CLASS(wxHtmlHelpFrame)
|
||||||
@@ -153,14 +164,7 @@ protected:
|
|||||||
wxListBox *m_SearchList;
|
wxListBox *m_SearchList;
|
||||||
wxChoice *m_SearchChoice;
|
wxChoice *m_SearchChoice;
|
||||||
|
|
||||||
struct WXDLLEXPORT _struct_Cfg {
|
wxHtmlHelpFrameCfg m_Cfg;
|
||||||
long x, y, w, h;
|
|
||||||
long sashpos;
|
|
||||||
bool navig_on;
|
|
||||||
int style; // flags given to wxHtmlHelpFrame ctor
|
|
||||||
wxString titleformat;
|
|
||||||
} m_Cfg;
|
|
||||||
// settings (window size, position, sash pos etc..)
|
|
||||||
wxConfigBase *m_Config;
|
wxConfigBase *m_Config;
|
||||||
wxString m_ConfigRoot;
|
wxString m_ConfigRoot;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user