X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/42e69d6b435a4dd5415caf3750db62cf45b6f373..019a60d62560638a65bb575e7e30938c7e667450:/include/wx/msw/wx.rc diff --git a/include/wx/msw/wx.rc b/include/wx/msw/wx.rc index d064760b5f..0f60b9bca7 100644 --- a/include/wx/msw/wx.rc +++ b/include/wx/msw/wx.rc @@ -25,14 +25,14 @@ // LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF // DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH // THE USE OR PERFORMANCE OF THIS SOFTWARE. -///////////////////////////////////////////////////////////////////////////// -// // +// Version: $Id$ +///////////////////////////////////////////////////////////////////////////// #if (defined( __GNUWIN32__ ) && !defined(__TWIN32__)) || defined(__MWERKS__) -#include + #include #else -#include + #include #endif ////////////////////////////////////////////////////////////////////////////// @@ -44,14 +44,18 @@ wxResizeableDialog DIALOG DISCARDABLE 34, 22, 144, 75 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME CAPTION "" BEGIN - LTEXT "", -1,-2,-2,1,1 //necessary for __WATCOMC__ +#ifdef __WATCOMC__ + LTEXT "", -1,-2,-2,1,1 +#endif END wxCaptionDialog DIALOG DISCARDABLE 34, 22, 144, 75 -STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU +STYLE DS_MODALFRAME | WS_CAPTION | WS_POPUP | WS_SYSMENU CAPTION "Dummy dialog" BEGIN - LTEXT "", -1,-2,-2,1,1 //necessary for __WATCOMC__ +#ifdef __WATCOMC__ + LTEXT "", -1,-2,-2,1,1 +#endif END // @@ -60,7 +64,9 @@ END wxNoCaptionDialog DIALOG 34, 22, 144, 75 STYLE WS_POPUP BEGIN - LTEXT "", -1,-2,-2,1,1 //necessary for __WATCOMC__ +#ifdef __WATCOMC__ + LTEXT "", -1,-2,-2,1,1 +#endif END ////////////////////////////////////////////////////////////////////////////// @@ -109,6 +115,13 @@ WXCURSOR_BLANK CURSOR DISCARDABLE "wx/msw/blank.cur" //wxDEFAULT_MDIPARENTFRAME ICON "wx/msw/mdi.ico" //wxDEFAULT_MDICHILDFRAME ICON "wx/msw/child.ico" +// Standard icons +wxICON_QUESTION ICON "wx/msw/question.ico" +wxICON_WARNING ICON "wx/msw/warning.ico" +wxICON_ERROR ICON "wx/msw/error.ico" +wxICON_INFO ICON "wx/msw/info.ico" +wxICON_TIP ICON "wx/msw/tip.ico" + ////////////////////////////////////////////////////////////////////////////// // // Bitmaps @@ -120,3 +133,15 @@ wxDISABLE_BUTTON_BITMAP BITMAP WXINCDIR"wx/msw/disable.bmp" wxDISABLE_BUTTON_BITMAP BITMAP "wx/msw/disable.bmp" #endif + +// For src/generic/proplist.cpp +tick_bmp BITMAP "wx/msw/tick.bmp" +cross_bmp BITMAP "wx/msw/cross.bmp" + +// For src/generic/plot.cpp +plot_up_bmp BITMAP "wx/msw/plot_up.bmp" +plot_dwn_bmp BITMAP "wx/msw/plot_dwn.bmp" +plot_enl_bmp BITMAP "wx/msw/plot_enl.bmp" +plot_shr_bmp BITMAP "wx/msw/plot_shr.bmp" +plot_zin_bmp BITMAP "wx/msw/plot_zin.bmp" +plot_zot_bmp BITMAP "wx/msw/plot_zot.bmp"