FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython-source-deps/unix/tkUnixSysNotify.c at tk · python/cpython-source-deps · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
cpython-source-deps
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
48
Star
28
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython-source-deps
/
unix
/
tkUnixSysNotify.c
Copy path
More file actions
More file actions
Latest commit
History
History
History
233 lines (207 loc) · 5.16 KB
Breadcrumbs
cpython-source-deps
/
unix
/
tkUnixSysNotify.c
Copy path
File metadata and controls
233 lines (207 loc) · 5.16 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
/*
* tkUnixSysNotify.c --
*
* tkUnixSysNotify.c implements a "sysnotify" Tcl command which
* permits one to post system notifications based on the libnotify API.
*
* Copyright © 2020 Kevin Walzer
* Copyright © 2020 Christian Werner for runtime linking
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*/
#include
"tkInt.h"
#include
"tkUnixInt.h"
/*
* Runtime linking of libnotify.
*/
typedef
int
(
*
fn_ln_init
)(
const
char
*
);
typedef
void
(
*
fn_ln_uninit
)(
void
);
typedef
void
*
(
*
fn_ln_notification_new
)(
const
char
*
,
const
char
*
,
const
char
*
,
void
*
);
typedef
int
(
*
fn_ln_notification_show
)(
void
*
,
int
*
);
static
struct
{
int
nopen
;
Tcl_LoadHandle
lib
;
fn_ln_init
init
;
fn_ln_uninit
uninit
;
fn_ln_notification_new
notification_new
;
fn_ln_notification_show
notification_show
;
}
ln_fns
=
{
0
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
};
#define
notify_init
ln_fns.init
#define
notify_uninit
ln_fns.uninit
#define
notify_notification_new
ln_fns.notification_new
#define
notify_notification_show
ln_fns.notification_show
TCL_DECLARE_MUTEX
(
ln_mutex
);
/*
* Forward declarations for procedures defined in this file.
*/
static
Tcl_CmdDeleteProc
SysNotifyDeleteCmd
;
static
Tcl_ObjCmdProc
SysNotifyCmd
;
/*
*----------------------------------------------------------------------
*
* SysNotifyDeleteCmd --
*
* Delete notification and clean up.
*
* Results:
* Window destroyed.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
static
void
SysNotifyDeleteCmd
(
TCL_UNUSED
(
void
*
))
{
Tcl_MutexLock
(
&
ln_mutex
);
if
(
--
ln_fns
.
nopen
==
0
) {
if
(
notify_uninit
) {
notify_uninit
();
}
if
(
ln_fns
.
lib
!=
NULL
) {
Tcl_FSUnloadFile
(
NULL
,
ln_fns
.
lib
);
}
memset
(
&
ln_fns
,
0
,
sizeof
(
ln_fns
));
}
Tcl_MutexUnlock
(
&
ln_mutex
);
}
/*
*----------------------------------------------------------------------
*
* SysNotifyCreateCmd --
*
* Create tray command and (unreal) window.
*
* Results:
* Icon tray and hidden window created.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
static
int
SysNotifyCmd
(
TCL_UNUSED
(
void
*
),
Tcl_Interp
*
interp
,
int
objc
,
Tcl_Obj
*
const
*
objv
)
{
const
char
*
title
;
const
char
*
message
;
const
char
*
icon
;
const
char
*
appname
=
"Wish"
;
void
*
notif
;
if
(
objc
<
3
) {
Tcl_WrongNumArgs
(
interp
,
1
,
objv
,
"title message"
);
return
TCL_ERROR
;
}
/*
* Pass strings to notification, and use a sane platform-specific
* icon in the alert.
*/
title
=
Tcl_GetString
(
objv
[
1
]);
message
=
Tcl_GetString
(
objv
[
2
]);
icon
=
"dialog-information"
;
/* Use the appname for libnotify initialization
* See bug f63c37be3a for a discussion whether this should be
* allowed at all on safe interpreters
*/
if
(!
Tcl_IsSafe
(
interp
)) {
appname
=
((
TkWindow
*
)
Tk_MainWindow
(
interp
))
->
nameUid
;
}
/*
* Call to notify_init should go here to prevent test suite failure.
*/
if
(
notify_init
&&
notify_notification_new
&&
notify_notification_show
) {
Tcl_Encoding
enc
;
Tcl_DString
dst
,
dsm
;
Tcl_DStringInit
(
&
dst
);
Tcl_DStringInit
(
&
dsm
);
enc
=
Tcl_GetEncoding
(
NULL
,
"utf-8"
);
char
*
dstStr
=
Tcl_UtfToExternalDString
(
enc
,
title
,
TCL_INDEX_NONE
,
&
dst
);
char
*
dsmStr
=
Tcl_UtfToExternalDString
(
enc
,
message
,
TCL_INDEX_NONE
,
&
dsm
);
notify_init
(
appname
);
notif
=
notify_notification_new
(
dstStr
,
dsmStr
,
icon
,
NULL
);
notify_notification_show
(
notif
,
NULL
);
Tcl_DStringFree
(
&
dsm
);
Tcl_DStringFree
(
&
dst
);
Tcl_FreeEncoding
(
enc
);
}
return
TCL_OK
;
}
/*
*----------------------------------------------------------------------
*
* SysNotify_Init --
*
* Initialize the command.
*
* Results:
* Command initialized.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
int
SysNotify_Init
(
Tcl_Interp
*
interp
)
{
Tcl_MutexLock
(
&
ln_mutex
);
if
(
ln_fns
.
nopen
==
0
) {
int
i
=
0
;
Tcl_Obj
*
nameobj
;
static
const
char
*
lnlibs
[]
=
{
"libnotify.so.4"
,
"libnotify.so.3"
,
"libnotify.so.2"
,
"libnotify.so.1"
,
"libnotify.so"
,
NULL
};
while
(
lnlibs
[
i
]
!=
NULL
) {
Tcl_ResetResult
(
interp
);
nameobj
=
Tcl_NewStringObj
(
lnlibs
[
i
],
TCL_INDEX_NONE
);
Tcl_IncrRefCount
(
nameobj
);
if
(
Tcl_LoadFile
(
interp
,
nameobj
,
NULL
,
0
,
NULL
,
&
ln_fns
.
lib
)
==
TCL_OK
) {
Tcl_DecrRefCount
(
nameobj
);
break
;
}
Tcl_DecrRefCount
(
nameobj
);
++
i
;
}
if
(
ln_fns
.
lib
!=
NULL
) {
#define
LN_SYM
(
name
) \
ln_fns.name = (fn_ln_ ## name) \
Tcl_FindSymbol(NULL, ln_fns.lib, "notify_" #name)
LN_SYM
(
init
);
LN_SYM
(
uninit
);
LN_SYM
(
notification_new
);
LN_SYM
(
notification_show
);
#undef
LN_SYM
}
}
ln_fns
.
nopen
++
;
Tcl_MutexUnlock
(
&
ln_mutex
);
if
(!
notify_init
)
return
TCL_OK
;
Tcl_CreateObjCommand
(
interp
,
"::tk::sysnotify::_sysnotify"
,
SysNotifyCmd
,
interp
,
SysNotifyDeleteCmd
);
return
TCL_OK
;
}
/*
* Local Variables:
* mode: c
* c-basic-offset: 4
* fill-column: 78
* coding: utf-8
* End:
*/
Back
|
FazBrowse Home
|
New Git URL