source: cmedia/trunk/Cmpciset/cmpciset.h@ 354

Last change on this file since 354 was 354, checked in by stevenhl, 17 years ago

Import untested baseline cmedia sources, work products and binaries
Binaries and work products should be deleted from repository.
once new builds are verified to work.

File size: 2.6 KB
Line 
1//----------------------------------------------------------------------//
2// //
3// erzeugt: 16.02.02 R.Ihle //
4// //
5//----------------------------------------------------------------------//
6
7#ifndef __CMPCISET_H
8#define __CMPCISET_H
9
10//----------------------------------------------------------------------//
11// String constants //
12//----------------------------------------------------------------------//
13
14#define APP_NAME "C-Media Control"
15#define APP_VERSION "v1.0"
16#define APP_COPYRIGHT "(c) 2002 Rudi"
17
18#define INIKEY_CX "Width"
19#define INIKEY_CY "Height"
20
21
22//----------------------------------------------------------------------//
23// Windows & Dialogs //
24//----------------------------------------------------------------------//
25
26#define IDW_CLIENT 1
27#define IDD_PAGE1 2
28#define IDD_PAGE2 3
29#define IDD_ABOUT 4
30
31
32//----------------------------------------------------------------------//
33// Controls //
34//----------------------------------------------------------------------//
35
36#define ID_BUTTON1 1000
37#define ID_BUTTON2 1001
38#define ID_BUTTON3 1002
39#define ID_BUTTON4 1003
40#define ID_BUTTON5 1004
41
42#define ID_EDIT1 1010
43#define ID_EDIT2 1011
44#define ID_EDIT3 1012
45#define ID_EDIT4 1013
46#define ID_EDIT5 1014
47
48#define ID_TEXT1 1020
49#define ID_TEXT2 1021
50#define ID_TEXT3 1022
51#define ID_TEXT4 1023
52#define ID_TEXT5 1024
53
54#define ID_RADIO1 1039
55#define ID_RADIO2 1031
56#define ID_RADIO3 1032
57#define ID_RADIO4 1033
58#define ID_RADIO5 1034
59#define ID_RADIO6 1035
60#define ID_RADIO7 1036
61#define ID_RADIO8 1037
62#define ID_RADIO9 1038
63#define ID_RADIO10 1039
64
65#define ID_STATIC1 1040
66#define ID_STATIC2 1041
67#define ID_STATIC3 1042
68#define ID_STATIC4 1043
69#define ID_STATIC5 1044
70
71#define ID_CHECK1 1050
72#define ID_CHECK2 1051
73#define ID_CHECK3 1052
74#define ID_CHECK4 1053
75#define ID_CHECK5 1054
76
77#define ID_SLIDER1 1060
78#define ID_SLIDER2 1061
79#define ID_SLIDER3 1062
80#define ID_SLIDER4 1063
81#define ID_SLIDER5 1064
82
83#define ID_CONTAINER1 1070
84#define ID_CONTAINER2 1071
85#define ID_CONTAINER3 1072
86#define ID_CONTAINER4 1073
87#define ID_CONTAINER5 1074
88
89
90//----------------------------------------------------------------------//
91// Menuitems //
92//----------------------------------------------------------------------//
93
94#define IDM_OPEN 10
95#define IDM_ABOUT 11
96#define IDM_EXIT 12
97
98
99//----------------------------------------------------------------------//
100// Bitmaps, Pionters, Icons //
101//----------------------------------------------------------------------//
102
103#define IDB_LOGO 111
104
105
106#endif
107
Note: See TracBrowser for help on using the repository browser.