Last change
on this file since 21591 was 21591, checked in by dmik, 14 years ago |
shell32: Prepared to the xsystray integration (keeping the old Systray/WPS based implementation).
|
-
Property svn:eol-style
set to
native
|
File size:
1.1 KB
|
Line | |
---|
1 | /*
|
---|
2 | * OS/2 System Tray support.
|
---|
3 | * A better implementaiton using the xsystray XCenter/eCenter widget API.
|
---|
4 | *
|
---|
5 | * Author: Dmitriy Kuminov
|
---|
6 | */
|
---|
7 |
|
---|
8 | #define INCL_WIN
|
---|
9 | #include <os2wrap.h>
|
---|
10 |
|
---|
11 | #include <string.h>
|
---|
12 |
|
---|
13 | #include <odin.h>
|
---|
14 | #include <winconst.h>
|
---|
15 |
|
---|
16 | //@todo later
|
---|
17 | //#include <xsystray_api.h>
|
---|
18 |
|
---|
19 | #include "systray_os2.h"
|
---|
20 |
|
---|
21 | static BOOL SYSTRAY_Ex_ItemInit(SystrayItem *ptrayItem)
|
---|
22 | {
|
---|
23 | //@todo later
|
---|
24 | return TRUE;
|
---|
25 | }
|
---|
26 |
|
---|
27 | static void SYSTRAY_Ex_ItemTerm(SystrayItem *ptrayItem)
|
---|
28 | {
|
---|
29 | //@todo later
|
---|
30 |
|
---|
31 | }
|
---|
32 |
|
---|
33 | static void SYSTRAY_Ex_ItemSetMessage(SystrayItem *ptrayItem, ULONG uCallbackMessage)
|
---|
34 | {
|
---|
35 | //@todo later
|
---|
36 |
|
---|
37 | }
|
---|
38 |
|
---|
39 | static void SYSTRAY_Ex_ItemSetIcon(SystrayItem *ptrayItem, HPOINTER hIcon)
|
---|
40 | {
|
---|
41 | //@todo later
|
---|
42 |
|
---|
43 | }
|
---|
44 |
|
---|
45 | static void SYSTRAY_Ex_ItemSetTip(SystrayItem *ptrayItem, CHAR* szTip, int modify)
|
---|
46 | {
|
---|
47 | //@todo later
|
---|
48 | }
|
---|
49 |
|
---|
50 | BOOL SYSTRAY_Ex_Init(void)
|
---|
51 | {
|
---|
52 | SYSTRAY_ItemInit = SYSTRAY_Ex_ItemInit;
|
---|
53 | SYSTRAY_ItemTerm = SYSTRAY_Ex_ItemTerm;
|
---|
54 | SYSTRAY_ItemSetMessage = SYSTRAY_Ex_ItemSetMessage;
|
---|
55 | SYSTRAY_ItemSetIcon = SYSTRAY_Ex_ItemSetIcon;
|
---|
56 | SYSTRAY_ItemSetTip = SYSTRAY_Ex_ItemSetTip;
|
---|
57 |
|
---|
58 | return TRUE;
|
---|
59 | }
|
---|
60 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.