-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmuiclass_settingscolor.h
83 lines (66 loc) · 1.95 KB
/
muiclass_settingscolor.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
The contents of this file are subject to the AROS Public License Version 1.1
(the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.aros.org/license.html
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the License.
*/
#ifndef MUICLASS_SETTINGSCOLOR_H
#define MUICLASS_SETTINGSCOLOR_H 1
/*************************************************************************/
#include <exec/types.h>
#include "muiclass.h"
#define SettingsColorObject NEWOBJECT( appclasses[ CLASSID_SETTINGSCOLOR ]->mcc_Class, NULL
/*
** Methods and attributes
*/
enum {
MM_SETTINGSCOLOR_DUMMY = 0xFED01000,
MM_SETTINGSCOLOR_RESETTODEFAULTS,
MM_SETTINGSCOLOR_READCONFIG,
MM_SETTINGSCOLOR_IMPORTASTEXT,
MM_SETTINGSCOLOR_EXPORTASTEXT,
/* Attributes */
};
struct MP_SETTINGSCOLOR_READCONFIG { ULONG MethodID; ULONG ObjectID; };
struct MP_SETTINGSCOLOR_IMPORTASTEXT { ULONG MethodID; char *Name; };
struct MP_SETTINGSCOLOR_EXPORTASTEXT { ULONG MethodID; char *Name; };
/*************************************************************************/
/*
** Prototypes
*/
ULONG MCC_SettingsColor_InitClass( void );
void MCC_SettingsColor_DisposeClass( void );
/*
** Pens
*/
enum{
PEN_CHANNELLISTBACKGROUND = 0,
PEN_CHANNELLISTTEXT,
PEN_CHANNELLISTUSER,
PEN_CHANNELLISTSERVER,
PEN_CHANNELLISTHIGHLIGHT,
PEN_USERLISTBACKGROUND,
PEN_USERLISTTEXT,
PEN_LOGLISTBACKGROUND,
PEN_LOGPRIVMSG,
PEN_LOGJOIN,
PEN_LOGPART,
PEN_LOGQUIT,
PEN_LOGMODE,
PEN_LOGCTCP,
PEN_LOGACTION,
PEN_LOGINFO,
PEN_LOGOWNTEXT,
PEN_LOGHIGHLIGHT,
PEN_LOGNOTICE,
PEN_LOGINVITE,
PEN_LOGKICK,
PEN_LOGNICKCHANGE,
PEN_LOGTOPIC,
PEN_LOGWALLOPS,
PEN_NUMBEROF
};
/*************************************************************************/
#endif /* MUICLASS_SETTINGSCOLOR_H */