Added stub include files; also a couple more Dialog Editor files.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@475 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-08-08 09:19:47 +00:00
parent 843410bdd0
commit 7c23a0b01b
67 changed files with 7236 additions and 0 deletions

View File

@@ -0,0 +1,77 @@
/////////////////////////////////////////////////////////////////////////////
// Name: winstyle.h
// Purpose: Window styles
// Author: Julian Smart
// Modified by:
// Created: 04/01/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _DE_WINSTYLE_H_
#define _DE_WINSTYLE_H_
#ifdef __GNUG__
#pragma interface "winstyle.h"
#endif
#include "wx/wx.h"
/*
* A class for storing/generating window styles.
*/
class wxWindowStyleClass;
class wxWindowStylePair
{
friend class wxWindowStyleClass;
public:
char* m_styleName;
long m_styleId;
};
class wxWindowStyleTable: public wxObject
{
public:
wxWindowStyleTable();
~wxWindowStyleTable();
// Operations
void ClearTable();
void AddStyles(const wxString& className, int n, wxWindowStylePair *styles);
wxWindowStyleClass* FindClass(const wxString& className) ;
bool GenerateStyleStrings(const wxString& className, long windowStyle, char *buf);
// Initialise with all possible styles
void Init();
// Members
protected:
wxList m_classes; // A list of wxWindowStyleClass objects, indexed by class name
};
/*
* Classes for storing all the window style identifiers associated with a particular class
*/
class wxWindowStyleClass: public wxObject
{
public:
wxWindowStyleClass(int n, wxWindowStylePair *styles);
~wxWindowStyleClass();
// Operations
void GenerateStyleStrings(long windowStyle, char *buf);
bool GenerateStyle(char *buf, long windowStyle, long flag, const wxString& strStyle);
// Members
protected:
wxWindowStylePair* m_styles; // An array of wxWindowStylePair objects
int m_styleCount;
};
#endif
// _DE_WINSTYLE_H_