DialogEd now compiles, links and runs under wxGTK
I didn't say it worked, eh. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@549 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -55,57 +55,80 @@ wxResourceEditorControlList::~wxResourceEditorControlList()
|
||||
// Load icons and add to the list
|
||||
void wxResourceEditorControlList::Initialize()
|
||||
{
|
||||
#ifdef __WXMSW__
|
||||
wxIcon icon1("ARROW_ICON", wxBITMAP_TYPE_ICO_RESOURCE, 16, 16);
|
||||
m_imageList.Add(icon1);
|
||||
|
||||
wxIcon icon2("BUTTON_ICON", wxBITMAP_TYPE_ICO_RESOURCE, 16, 16);
|
||||
m_imageList.Add(icon2);
|
||||
|
||||
wxIcon icon3("BMPBUTTON_ICON", wxBITMAP_TYPE_ICO_RESOURCE, 16, 16);
|
||||
m_imageList.Add(icon3);
|
||||
|
||||
wxIcon icon4("STATICTEXT_ICON", wxBITMAP_TYPE_ICO_RESOURCE, 16, 16);
|
||||
m_imageList.Add(icon4);
|
||||
|
||||
wxIcon icon5("STATICBMP_ICON", wxBITMAP_TYPE_ICO_RESOURCE, 16, 16);
|
||||
m_imageList.Add(icon5);
|
||||
|
||||
wxIcon icon6("STATICBOX_ICON", wxBITMAP_TYPE_ICO_RESOURCE, 16, 16);
|
||||
m_imageList.Add(icon6);
|
||||
|
||||
wxIcon icon7("TEXTSING_ICON", wxBITMAP_TYPE_ICO_RESOURCE, 16, 16);
|
||||
m_imageList.Add(icon7);
|
||||
|
||||
wxIcon icon8("TEXTMULT_ICON", wxBITMAP_TYPE_ICO_RESOURCE, 16, 16);
|
||||
m_imageList.Add(icon8);
|
||||
|
||||
wxIcon icon9("LISTBOX_ICON", wxBITMAP_TYPE_ICO_RESOURCE, 16, 16);
|
||||
m_imageList.Add(icon9);
|
||||
|
||||
wxIcon icon10("CHOICE_ICON", wxBITMAP_TYPE_ICO_RESOURCE, 16, 16);
|
||||
m_imageList.Add(icon10);
|
||||
|
||||
wxIcon icon11("COMBOBOX_ICON", wxBITMAP_TYPE_ICO_RESOURCE, 16, 16);
|
||||
m_imageList.Add(icon11);
|
||||
|
||||
wxIcon icon12("CHECKBOX_ICON", wxBITMAP_TYPE_ICO_RESOURCE, 16, 16);
|
||||
m_imageList.Add(icon12);
|
||||
|
||||
wxIcon icon13("SLIDER_ICON", wxBITMAP_TYPE_ICO_RESOURCE, 16, 16);
|
||||
m_imageList.Add(icon13);
|
||||
|
||||
wxIcon icon14("GAUGE_ICON", wxBITMAP_TYPE_ICO_RESOURCE, 16, 16);
|
||||
m_imageList.Add(icon14);
|
||||
|
||||
wxIcon icon15("RADIOBOX_ICON", wxBITMAP_TYPE_ICO_RESOURCE, 16, 16);
|
||||
m_imageList.Add(icon15);
|
||||
|
||||
wxIcon icon16("RADIOBTN_ICON", wxBITMAP_TYPE_ICO_RESOURCE, 16, 16);
|
||||
m_imageList.Add(icon16);
|
||||
|
||||
wxIcon icon17("SCROLBAR_ICON", wxBITMAP_TYPE_ICO_RESOURCE, 16, 16);
|
||||
m_imageList.Add(icon17);
|
||||
#else
|
||||
|
||||
#include "bitmaps/arrow.xpm"
|
||||
wxIcon icon1( arrow_xpm );
|
||||
#include "bitmaps/button.xpm"
|
||||
wxIcon icon2( button_xpm );
|
||||
#include "bitmaps/bmpbuttn.xpm"
|
||||
wxIcon icon3( bmpbuttn_xpm );
|
||||
#include "bitmaps/stattext.xpm"
|
||||
wxIcon icon4( stattext_xpm );
|
||||
#include "bitmaps/statbmp.xpm"
|
||||
wxIcon icon5( statbmp_xpm );
|
||||
#include "bitmaps/statbox.xpm"
|
||||
wxIcon icon6( statbox_xpm );
|
||||
#include "bitmaps/textsing.xpm"
|
||||
wxIcon icon7( textsing_xpm );
|
||||
#include "bitmaps/textmult.xpm"
|
||||
wxIcon icon8( textmult_xpm );
|
||||
#include "bitmaps/listbox.xpm"
|
||||
wxIcon icon9( listbox_xpm );
|
||||
#include "bitmaps/choice.xpm"
|
||||
wxIcon icon10( choice_xpm );
|
||||
#include "bitmaps/combobox.xpm"
|
||||
wxIcon icon11( combobox_xpm );
|
||||
#include "bitmaps/checkbox.xpm"
|
||||
wxIcon icon12( checkbox_xpm );
|
||||
#include "bitmaps/slider.xpm"
|
||||
wxIcon icon13( slider_xpm );
|
||||
#include "bitmaps/gauge.xpm"
|
||||
wxIcon icon14( gauge_xpm );
|
||||
#include "bitmaps/radiobox.xpm"
|
||||
wxIcon icon15( radiobox_xpm );
|
||||
#include "bitmaps/radiobtn.xpm"
|
||||
wxIcon icon16( radiobtn_xpm );
|
||||
#include "bitmaps/scrolbar.xpm"
|
||||
wxIcon icon17( scrolbar_xpm );
|
||||
#endif
|
||||
|
||||
m_imageList.Add(icon1);
|
||||
m_imageList.Add(icon2);
|
||||
m_imageList.Add(icon3);
|
||||
m_imageList.Add(icon4);
|
||||
m_imageList.Add(icon5);
|
||||
m_imageList.Add(icon6);
|
||||
m_imageList.Add(icon7);
|
||||
m_imageList.Add(icon8);
|
||||
m_imageList.Add(icon9);
|
||||
m_imageList.Add(icon10);
|
||||
m_imageList.Add(icon11);
|
||||
m_imageList.Add(icon12);
|
||||
m_imageList.Add(icon13);
|
||||
m_imageList.Add(icon14);
|
||||
m_imageList.Add(icon15);
|
||||
m_imageList.Add(icon16);
|
||||
m_imageList.Add(icon17);
|
||||
|
||||
SetImageList(& m_imageList, wxIMAGE_LIST_SMALL);
|
||||
|
||||
long id = InsertItem(0, "Pointer", 0);
|
||||
|
Reference in New Issue
Block a user