source: AE/Installer/trunk/source/app_resources.cpp@ 368

Last change on this file since 368 was 324, checked in by iritscen, 15 years ago

Replacing old CLI source with new GUI source.

  • Property svn:executable set to *
File size: 1.8 KB
Line 
1/////////////////////////////////////////////////////////////////////////////
2// Name:
3// Purpose:
4// Author:
5// Modified by:
6// Created: 06/05/2009 08:47:16
7// RCS-ID:
8// Copyright:
9// Licence:
10/////////////////////////////////////////////////////////////////////////////
11
12// For compilers that support precompilation, includes "wx/wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
16#pragma hdrstop
17#endif
18
19#ifndef WX_PRECOMP
20#include "wx/wx.h"
21#endif
22
23////@begin includes
24////@end includes
25
26#include "app_resources.h"
27
28////@begin XPM images
29////@end XPM images
30
31/*!
32 * Resource functions
33 */
34
35////@begin AppResources resource functions
36
37/*
38 * Menubar creation function for ID_MENUBAR
39 */
40
41wxMenuBar* AppResources::CreateMenuMenubar()
42{
43 wxMenuBar* menuBar = new wxMenuBar;
44 wxMenu* itemMenu2 = new wxMenu;
45 itemMenu2->Append(Open, _("Open"), wxEmptyString, wxITEM_NORMAL);
46 menuBar->Append(itemMenu2, _("File"));
47 wxMenu* itemMenu4 = new wxMenu;
48 menuBar->Append(itemMenu4, _("Menu"));
49 wxMenu* itemMenu5 = new wxMenu;
50 menuBar->Append(itemMenu5, _("Menu"));
51 wxMenu* itemMenu6 = new wxMenu;
52 menuBar->Append(itemMenu6, _("Menu"));
53 return menuBar;
54}
55
56////@end AppResources resource functions
57
58/*!
59 * Get bitmap resources
60 */
61
62wxBitmap AppResources::GetBitmapResource( const wxString& name )
63{
64 // Bitmap retrieval
65////@begin AppResources bitmap retrieval
66 wxUnusedVar(name);
67 return wxNullBitmap;
68////@end AppResources bitmap retrieval
69}
70
71/*!
72 * Get icon resources
73 */
74
75wxIcon AppResources::GetIconResource( const wxString& name )
76{
77 wxUnusedVar(name);
78 // Icon retrieval
79////@begin AppResources icon retrieval
80 wxUnusedVar(name);
81 return wxNullIcon;
82////@end AppResources icon retrieval
83}
Note: See TracBrowser for help on using the repository browser.