text
stringlengths
1
24.5M
// SciTE - Scintilla based Text Editor /** @file PropSet.cxx ** A Java style properties file module. **/ // Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. // Maintain a dictionary of properties #include <stdlib...
// Scintilla source code edit control /** @file RESearch.cxx ** Regular expression search library. **/ /* * regex - Regular expression pattern matching and replacement * * By: Ozan S. Yigit (oz) * Dept. of Computer Science * York University * * Original code available from http://www.cs.yorku.ca/~o...
// Scintilla source code edit control /** @file RESearch.h ** Interface to the regular expression search library. **/ // Written by Neil Hodgson <neilh@scintilla.org> // Based on the work of Ozan S. Yigit. // This file is in the public domain. #ifndef RESEARCH_H #define RESEARCH_H /* * The following defines are no...
// Scintilla source code edit control /** @file ScintillaBase.cxx ** An enhanced subclass of Editor with calltips, autocomplete and context menu. **/ // Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. #include <s...
// Scintilla source code edit control /** @file ScintillaBase.h ** Defines an enhanced subclass of Editor with calltips, autocomplete and context menu. **/ // Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. #ifnd...
// Scintilla source code edit control /** @file Style.cxx ** Defines the font and colour style for a class of text. **/ // Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. #include <string.h> #include "Platform.h...
// Scintilla source code edit control /** @file Style.h ** Defines the font and colour style for a class of text. **/ // Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. #ifndef STYLE_H #define STYLE_H /** */ cl...
// Scintilla source code edit control /** @file StyleContext.cxx ** Lexer infrastructure. **/ // Copyright 1998-2004 by Neil Hodgson <neilh@scintilla.org> // This file is in the public domain. #include <stdlib.h> #include <string.h> #include <ctype.h> #include <stdio.h> #include "Platform.h" #include "PropSet.h" #...
// Scintilla source code edit control /** @file StyleContext.cxx ** Lexer infrastructure. **/ // Copyright 1998-2004 by Neil Hodgson <neilh@scintilla.org> // This file is in the public domain. // All languages handled so far can treat all characters >= 0x80 as one class // which just continues the current token or s...
// Scintilla source code edit control /** @file SVector.h ** A simple expandable vector. **/ // Copyright 1998-2001 by Neil Hodgson <neilh@hare.net.au> // The License.txt file describes the conditions under which this software may be distributed. #ifndef SVECTOR_H #define SVECTOR_H /** * A simple expandable intege...
// Scintilla source code edit control /** @file UniConversion.cxx ** Functions to handle UFT-8 and UCS-2 strings. **/ // Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. #include <stdlib.h> #include "UniConversio...
// Scintilla source code edit control /** @file UniConversion.h ** Functions to handle UFT-8 and UCS-2 strings. **/ // Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. unsigned int UTF8Length(const wchar_t *uptr, ...
// Scintilla source code edit control /** @file ViewStyle.cxx ** Store information on how the document is to be viewed. **/ // Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. #include <string.h> #include "Platfo...
// Scintilla source code edit control /** @file ViewStyle.h ** Store information on how the document is to be viewed. **/ // Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. #ifndef VIEWSTYLE_H #define VIEWSTYLE_H...
// Scintilla source code edit control /** @file WindowAccessor.cxx ** Rapid easy access to contents of a Scintilla. **/ // Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. #include <stdlib.h> #include <string.h> #...
// Scintilla source code edit control /** @file XPM.cxx ** Define a class that holds data in the X Pixmap (XPM) format. **/ // Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. #include <string.h> #include <stdlib....
// Scintilla source code edit control /** @file XPM.h ** Define a class that holds data in the X Pixmap (XPM) format. **/ // Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. #ifndef XPM_H #define XPM_H /** * Hol...
// Scintilla source code edit control /** @file PlatformRes.h ** Defines IDs of resources used by Scintilla on Windows platform. **/ // Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. #define IDC_MARGIN ...
// Scintilla source code edit control /** @file PlatWin.cxx ** Implementation of platform facilities on Windows. **/ // Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. #include <stdlib.h> #include <string.h> #inc...
// Scintilla source code edit control /** @file ScintillaWin.cxx ** Windows specific subclass of ScintillaBase. **/ // Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. #include <stdlib.h> #include <string.h> #incl...
// dllmain.cpp : Defines the entry point for the DLL application. #include <Windows.h> BOOL APIENTRY DllMain( HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) { switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: case ...
#include "Plugin.h" #include "resource.h" BOOL gTestPluginState = FALSE; BOOL PLUGIN_CC PluginInit( OUT LPRECLASS_PLUGIN_INFO lpRCInfo ) { wcscpy_s( lpRCInfo->Name, L"Test Plugin Name" ); wcscpy_s( lpRCInfo->Version, L"1.0.0.2" ); wcscpy_s( lpRCInfo->About, L"This plugin is a test plugin" ); ...
#pragma once #include "targetver.h" #define WIN32_LEAN_AND_MEAN #include <windows.h> #include <fstream> #include <sstream> #include <memory> #include "ReClassAPI.h" BOOL PLUGIN_CC WriteCallback( IN LPVOID Address, IN LPVOID Buffer, IN SIZE_T Size, OUT PSIZE_T BytesWritten ); BOOL PLUGIN_...
#ifndef _RECLASS_API_H_ #define _RECLASS_API_H_ //#include <afxribbonbar.h> // Used for ribbon bar. comment this out if not used #ifdef _WIN64 #ifdef _DEBUG #pragma comment(lib, "ReClassEx64_dbg.lib") #else #pragma comment(lib, "ReClassEx64.lib") #endif #else #ifdef _DEBUG #pragma comment(lib, "ReClassEx_dbg.lib") #e...
ÿþ//{{NO_DEPENDENCIES}} // Microsoft Visual C++ generated include file. // Used by res.rc // #define IDD_SETTINGS_DLG 101 #define IDC_CHECK_R...
#pragma once // Including SDKDDKVer.h defines the highest available Windows platform. // If you wish to build your application for a previous Windows platform, include WinSDKVer.h and // set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h. #include <SDKDDKVer.h>
///////////////////////////////////////////////////////////////////////////// // Name: msvc/wx/setup.h // Purpose: wrapper around the real wx/setup.h for Visual C++ // Author: Vadim Zeitlin // Modified by: // Created: 2004-12-12 // Copyright: (c) 2004 Vadim Zeitlin <vadim@wxwindows.org> // Licence...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/aboutdlg.h // Purpose: declaration of wxAboutDialog class // Author: Vadim Zeitlin // Created: 2006-10-07 // Copyright: (c) 2006 Vadim Zeitlin <vadim@wxwindows.org> // Licence: wxWindows licence ///////...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/accel.h // Purpose: wxAcceleratorEntry and wxAcceleratorTable classes // Author: Julian Smart, Robert Roebling, Vadim Zeitlin // Modified by: // Created: 31.05.01 (extracted from other files) // Copyright: ...
///////////////////////////////////////////////////////////////////////////// // Name: wx/access.h // Purpose: Accessibility classes // Author: Julian Smart // Modified by: // Created: 2003-02-12 // Copyright: (c) Julian Smart // Licence: wxWindows licence /////////////////////////////////////...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/activityindicator.h // Purpose: wxActivityIndicator declaration. // Author: Vadim Zeitlin // Created: 2015-03-05 // Copyright: (c) 2015 Vadim Zeitlin <vadim@wxwidgets.org> // Licence: wxWindows licence ...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/addremovectrl.h // Purpose: wxAddRemoveCtrl declaration. // Author: Vadim Zeitlin // Created: 2015-01-29 // Copyright: (c) 2015 Vadim Zeitlin <vadim@wxwidgets.org> // Licence: wxWindows licence ////////...
///////////////////////////////////////////////////////////////////////////// // Name: wx/affinematrix2d.h // Purpose: wxAffineMatrix2D class. // Author: Based on wxTransformMatrix by Chris Breeze, Julian Smart // Created: 2011-04-05 // Copyright: (c) wxWidgets team // Licence: wxWindows...
///////////////////////////////////////////////////////////////////////////// // Name: wx/affinematrix2dbase.h // Purpose: Common interface for 2D transformation matrices. // Author: Catalin Raceanu // Created: 2011-04-06 // Copyright: (c) wxWidgets team // Licence: wxWindows licence ///...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/afterstd.h // Purpose: #include after STL headers // Author: Vadim Zeitlin // Modified by: // Created: 07/07/03 // Copyright: (c) 2003 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> // Licence: wxWindow...
///////////////////////////////////////////////////////////////////////////// // Name: wx/anidecod.h // Purpose: wxANIDecoder, ANI reader for wxImage and wxAnimation // Author: Francesco Montorsi // Copyright: (c) 2006 Francesco Montorsi // Licence: wxWindows licence //////////////////////////////...
///////////////////////////////////////////////////////////////////////////// // Name: wx/animate.h // Purpose: wxAnimation and wxAnimationCtrl // Author: Julian Smart and Guillermo Rodriguez Garcia // Modified by: Francesco Montorsi // Created: 13/8/99 // Copyright: (c) Julian Smart and Guillermo...
///////////////////////////////////////////////////////////////////////////// // Name: wx/animdecod.h // Purpose: wxAnimationDecoder // Author: Francesco Montorsi // Copyright: (c) 2006 Francesco Montorsi // Licence: wxWindows licence ///////////////////////////////////////////////////////////////...
///////////////////////////////////////////////////////////////////////////// // Name: wx/any.h // Purpose: wxAny class // Author: Jaakko Salli // Modified by: // Created: 07/05/2009 // Copyright: (c) wxWidgets team // Licence: wxWindows licence ////////////////////////////////////////////////...
///////////////////////////////////////////////////////////////////////////// // Name: wx/anybutton.h // Purpose: wxAnyButtonBase class // Author: Vadim Zeitlin // Created: 2000-08-15 (extracted from button.h) // Copyright: (c) Vadim Zeitlin // Licence: wxWindows licence //////////////////////...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/anystr.h // Purpose: wxAnyStrPtr class declaration // Author: Vadim Zeitlin // Created: 2009-03-23 // Copyright: (c) 2008 Vadim Zeitlin <vadim@wxwidgets.org> // Licence: wxWindows licence //////////////...
///////////////////////////////////////////////////////////////////////////// // Name: wx/app.h // Purpose: wxAppBase class and macros used for declaration of wxApp // derived class in the user code // Author: Julian Smart // Modified by: // Created: 01/02/97 // Copyright: (c) Julian ...
///////////////////////////////////////////////////////////////////////////// // Name: wx/appprogress.h // Purpose: wxAppProgressIndicator interface. // Author: Chaobin Zhang <zhchbin@gmail.com> // Created: 2014-09-05 // Copyright: (c) 2014 wxWidgets development team // Licence: wxWindows lice...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/apptrait.h // Purpose: declaration of wxAppTraits and derived classes // Author: Vadim Zeitlin // Modified by: // Created: 19.06.2003 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org> // Licence: ...
///////////////////////////////////////////////////////////////////////////// // Name: wx/archive.h // Purpose: Streams for archive formats // Author: Mike Wetherell // Copyright: (c) 2004 Mike Wetherell // Licence: wxWindows licence ////////////////////////////////////////////////////////////////...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/arrimpl.cpp // Purpose: helper file for implementation of dynamic lists // Author: Vadim Zeitlin // Modified by: // Created: 16.10.97 // Copyright: (c) 1997 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> //...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/arrstr.h // Purpose: wxArrayString class // Author: Mattia Barbon and Vadim Zeitlin // Modified by: // Created: 07/07/03 // Copyright: (c) 2003 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> // Licence: ...
///////////////////////////////////////////////////////////////////////////// // Name: wx/artprov.h // Purpose: wxArtProvider class // Author: Vaclav Slavik // Modified by: // Created: 18/03/2002 // Copyright: (c) Vaclav Slavik // Licence: wxWindows licence ////////////////////////////////////...
///////////////////////////////////////////////////////////////////////////// // Name: wx/atomic.h // Purpose: functions to manipulate atomically integers and pointers // Author: Armel Asselin // Created: 12/13/2006 // Copyright: (c) Armel Asselin // Licence: wxWindows licence ////////////////...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/bannerwindow.h // Purpose: wxBannerWindow class declaration // Author: Vadim Zeitlin // Created: 2011-08-16 // Copyright: (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org> // Licence: wxWindows licence /////...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/base64.h // Purpose: declaration of BASE64 encoding/decoding functionality // Author: Charles Reimers, Vadim Zeitlin // Created: 2007-06-18 // Licence: wxWindows licence //////////////////////////////////...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/beforestd.h // Purpose: #include before STL headers // Author: Vadim Zeitlin // Modified by: // Created: 07/07/03 // Copyright: (c) 2003 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> // Licence: wxWind...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/bitmap.h // Purpose: wxBitmap class interface // Author: Vaclav Slavik // Modified by: // Created: 22.04.01 // Copyright: (c) wxWidgets team // Licence: wxWindows licence ///////////////////////////////...
///////////////////////////////////////////////////////////////////////////// // Name: wx/bmpbuttn.h // Purpose: wxBitmapButton class interface // Author: Vadim Zeitlin // Modified by: // Created: 25.08.00 // Copyright: (c) 2000 Vadim Zeitlin // Licence: wxWindows licence /////////////////////...
///////////////////////////////////////////////////////////////////////////// // Name: wx/bmpcbox.h // Purpose: wxBitmapComboBox base header // Author: Jaakko Salli // Modified by: // Created: Aug-31-2006 // Copyright: (c) Jaakko Salli // Licence: wxWindows licence ////////////////////////////...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/bookctrl.h // Purpose: wxBookCtrlBase: common base class for wxList/Tree/Notebook // Author: Vadim Zeitlin // Modified by: // Created: 19.08.03 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org> // ...
///////////////////////////////////////////////////////////////////////////// // Name: wx/brush.h // Purpose: Includes platform-specific wxBrush file // Author: Julian Smart // Modified by: // Created: // Copyright: Julian Smart // Licence: wxWindows Licence ///////////////////////////////////////...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/buffer.h // Purpose: auto buffer classes: buffers which automatically free memory // Author: Vadim Zeitlin // Modified by: // Created: 12.04.99 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cac...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/build.h // Purpose: Runtime build options checking // Author: Vadim Zeitlin, Vaclav Slavik // Modified by: // Created: 07.05.02 // Copyright: (c) 2002 Vadim Zeitlin <vadim@wxwidgets.org> // Licence: wxW...
///////////////////////////////////////////////////////////////////////////// // Name: wx/busyinfo.h // Purpose: Information window (when app is busy) // Author: Vaclav Slavik // Copyright: (c) 1999 Vaclav Slavik // Licence: wxWindows licence ///////////////////////////////////////////////////////...
///////////////////////////////////////////////////////////////////////////// // Name: wx/button.h // Purpose: wxButtonBase class // Author: Vadim Zeitlin // Modified by: // Created: 15.08.00 // Copyright: (c) Vadim Zeitlin // Licence: wxWindows licence ////////////////////////////////////////...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/calctrl.h // Purpose: date-picker control // Author: Vadim Zeitlin // Modified by: // Created: 29.12.99 // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> // Licence: wxWindows licenc...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/caret.h // Purpose: wxCaretBase class - the interface of wxCaret // Author: Vadim Zeitlin // Modified by: // Created: 23.05.99 // Copyright: (c) wxWidgets team // Licence: wxWindows licence ////////////...
/* * Name: wx/chartype.h * Purpose: Declarations of wxChar and related types * Author: Joel Farley, Ove KÃ¥ven * Modified by: Vadim Zeitlin, Robert Roebling, Ron Lee * Created: 1998/06/12 * Copyright: (c) 1998-2006 wxWidgets dev team * Licence: wxWindows licence */ /* THIS IS A C FILE...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/checkbox.h // Purpose: wxCheckBox class interface // Author: Vadim Zeitlin // Modified by: // Created: 07.09.00 // Copyright: (c) wxWidgets team // Licence: wxWindows licence ///////////////////////////...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/checkeddelete.h // Purpose: wxCHECKED_DELETE() macro // Author: Vadim Zeitlin // Created: 2009-02-03 // Copyright: (c) 2002-2009 wxWidgets dev team // Licence: wxWindows licence ////////////////////////...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/checklst.h // Purpose: wxCheckListBox class interface // Author: Vadim Zeitlin // Modified by: // Created: 12.09.00 // Copyright: (c) Vadim Zeitlin // Licence: wxWindows licence ////////////////////////...
/* * Name: wx/chkconf.h * Purpose: check the config settings for consistency * Author: Vadim Zeitlin * Modified by: * Created: 09.08.00 * Copyright: (c) 2000 Vadim Zeitlin <vadim@wxwidgets.org> * Licence: wxWindows licence */ /* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR ...
///////////////////////////////////////////////////////////////////////////// // Name: wx/choicdlg.h // Purpose: Includes generic choice dialog file // Author: Julian Smart // Modified by: // Created: // Copyright: Julian Smart // Licence: wxWindows licence ////////////////////////////////////////...
///////////////////////////////////////////////////////////////////////////// // Name: wx/choice.h // Purpose: wxChoice class interface // Author: Vadim Zeitlin // Modified by: // Created: 26.07.99 // Copyright: (c) wxWidgets team // Licence: wxWindows licence /////////////////////////////////...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/choicebk.h // Purpose: wxChoicebook: wxChoice and wxNotebook combination // Author: Vadim Zeitlin // Modified by: Wlodzimierz ABX Skiba from wx/listbook.h // Created: 15.09.04 // Copyright: (c) Vadim Zeitli...
///////////////////////////////////////////////////////////////////////////// // Name: wx/clipbrd.h // Purpose: wxClipboad class and clipboard functions // Author: Vadim Zeitlin // Modified by: // Created: 19.10.99 // Copyright: (c) wxWidgets Team // Licence: wxWindows licence ////////////////...
///////////////////////////////////////////////////////////////////////////// // Name: wx/clntdata.h // Purpose: A mixin class for holding a wxClientData or void pointer // Author: Robin Dunn // Modified by: // Created: 9-Oct-2001 // Copyright: (c) wxWidgets team // Licence: wxWindows licence ...
///////////////////////////////////////////////////////////////////////////// // Name: wx/clrpicker.h // Purpose: wxColourPickerCtrl base header // Author: Francesco Montorsi (based on Vadim Zeitlin's code) // Modified by: // Created: 14/4/2006 // Copyright: (c) Vadim Zeitlin, Francesco Montorsi /...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/cmdargs.h // Purpose: declaration of wxCmdLineArgsArray helper class // Author: Vadim Zeitlin // Created: 2007-11-12 // Copyright: (c) 2007 Vadim Zeitlin <vadim@wxwindows.org> // Licence: wxWindows lice...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/cmdline.h // Purpose: wxCmdLineParser and related classes for parsing the command // line options // Author: Vadim Zeitlin // Modified by: // Created: 04.01.00 // Copyright: (c) 2000 Vadim Zeit...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/cmdproc.h // Purpose: undo/redo capable command processing framework // Author: Julian Smart (extracted from docview.h by VZ) // Modified by: // Created: 05.11.00 // Copyright: (c) wxWidgets team // Licence...
///////////////////////////////////////////////////////////////////////////// // Name: wx/cmndata.h // Purpose: Common GDI data classes // Author: Julian Smart and others // Modified by: // Created: 01/02/97 // Copyright: (c) // Licence: wxWindows licence //////////////////////////////////////...
///////////////////////////////////////////////////////////////////////////// // Name: wx/collheaderctrl.h // Purpose: wxCollapsibleHeaderCtrl // Author: Tobias Taschner // Created: 2015-09-19 // Copyright: (c) 2015 wxWidgets development team // Licence: wxWindows licence /////////////////////...
///////////////////////////////////////////////////////////////////////////// // Name: wx/collpane.h // Purpose: wxCollapsiblePane // Author: Francesco Montorsi // Modified by: // Created: 8/10/2006 // Copyright: (c) Francesco Montorsi // Licence: wxWindows Licence ////////////////////////////...
///////////////////////////////////////////////////////////////////////////// // Name: wx/colordlg.h // Purpose: wxColourDialog // Author: Vadim Zeitlin // Modified by: // Created: 01/02/97 // Copyright: (c) wxWidgets team // Licence: wxWindows licence /////////////////////////////////////////...
///////////////////////////////////////////////////////////////////////////// // Name: wx/colour.h // Purpose: wxColourBase definition // Author: Julian Smart // Modified by: Francesco Montorsi // Created: // Copyright: Julian Smart // Licence: wxWindows licence ///////////////////////////////////...
///////////////////////////////////////////////////////////////////////////// // Name: wx/colourdata.h // Author: Julian Smart // Copyright: (c) Julian Smart // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_COLOURDATA_H_ #define _...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/combo.h // Purpose: wxComboCtrl declaration // Author: Jaakko Salli // Modified by: // Created: Apr-30-2006 // Copyright: (c) Jaakko Salli // Licence: wxWindows licence /////////////////////////////////...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/combobox.h // Purpose: wxComboBox declaration // Author: Vadim Zeitlin // Modified by: // Created: 24.12.00 // Copyright: (c) 1996-2000 wxWidgets team // Licence: wxWindows licence /////////////////////...
///////////////////////////////////////////////////////////////////////////// // Name: wx/commandlinkbutton.h // Purpose: wxCommandLinkButtonBase and wxGenericCommandLinkButton classes // Author: Rickard Westerlund // Created: 2010-06-11 // Copyright: (c) 2010 wxWidgets team // Licence: wxWind...
/* * Name: wx/compiler.h * Purpose: Compiler-specific macro definitions. * Author: Vadim Zeitlin * Created: 2013-07-13 (extracted from wx/platform.h) * Copyright: (c) 1997-2013 Vadim Zeitlin <vadim@wxwidgets.org> * Licence: wxWindows licence */ /* THIS IS A C FILE, DON'T USE C++ FEATUR...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/compositewin.h // Purpose: wxCompositeWindow<> declaration // Author: Vadim Zeitlin // Created: 2011-01-02 // Copyright: (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org> // Licence: wxWindows licence //////...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/confbase.h // Purpose: declaration of the base class of all config implementations // (see also: fileconf.h and msw/regconf.h and iniconf.h) // Author: Karsten Ballueder & Vadim Zeitlin // Modified b...
///////////////////////////////////////////////////////////////////////////// // Name: wx/config.h // Purpose: wxConfig base header // Author: Julian Smart // Modified by: // Created: // Copyright: (c) Julian Smart // Licence: wxWindows licence /////////////////////////////////////////////////////...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/containr.h // Purpose: wxControlContainer and wxNavigationEnabled declarations // Author: Vadim Zeitlin // Modified by: // Created: 06.08.01 // Copyright: (c) 2001, 2011 Vadim Zeitlin <zeitlin@dptmaths.ens-...
///////////////////////////////////////////////////////////////////////////// // Name: wx/control.h // Purpose: wxControl common interface // Author: Vadim Zeitlin // Modified by: // Created: 26.07.99 // Copyright: (c) wxWidgets team // Licence: wxWindows licence //////////////////////////////...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/convauto.h // Purpose: wxConvAuto class declaration // Author: Vadim Zeitlin // Created: 2006-04-03 // Copyright: (c) 2006 Vadim Zeitlin // Licence: wxWindows licence ///////////////////////////////////...
/* * Name: wx/cpp.h * Purpose: Various preprocessor helpers * Author: Vadim Zeitlin * Created: 2006-09-30 * Copyright: (c) 2006 Vadim Zeitlin <vadim@wxwindows.org> * Licence: wxWindows licence */ /* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */ #ifnd...
///////////////////////////////////////////////////////////////////////////// // Name: wx/cppunit.h // Purpose: wrapper header for CppUnit headers // Author: Vadim Zeitlin // Created: 15.02.04 // Copyright: (c) 2004 Vadim Zeitlin // Licence: wxWindows Licence //////////////////////////////////...
////////////////////////////////////////////////////////////////////////////// // Name: wx/crt.h // Purpose: Header to include all headers with wrappers for CRT functions // Author: Robert Roebling // Created: 2007-05-30 // Copyright: (c) 2007 wxWidgets dev team // Licence: wxWindows licence /...
///////////////////////////////////////////////////////////////////////////// // Name: wx/cshelp.h // Purpose: Context-sensitive help support classes // Author: Julian Smart, Vadim Zeitlin // Modified by: // Created: 08/09/2000 // Copyright: (c) 2000 Julian Smart, Vadim Zeitlin // Licence: wxW...
///////////////////////////////////////////////////////////////////////////// // Name: wx/ctrlsub.h (read: "wxConTRoL with SUBitems") // Purpose: wxControlWithItems interface // Author: Vadim Zeitlin // Modified by: // Created: 22.10.99 // Copyright: (c) wxWidgets team // Licence: wxWindows li...
///////////////////////////////////////////////////////////////////////////// // Name: wx/cursor.h // Purpose: wxCursor base header // Author: Julian Smart, Vadim Zeitlin // Created: // Copyright: (c) Julian Smart // (c) 2014 Vadim Zeitlin (wxCursorBase) // Licence: wxWindows Licence ...
/////////////////////////////////////////////////////////////////////////////// // Name: wx/custombgwin.h // Purpose: Class adding support for custom window backgrounds. // Author: Vadim Zeitlin // Created: 2011-10-10 // Copyright: (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org> // Licence: wxWin...