1 /* dialog.c - dialog windows for internal use
3 * Window Maker window manager
5 * Copyright (c) 1997, 1998 Alfredo K. Kojima
6 * Copyright (c) 1999 Dan Pascu
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
27 #include <X11/Xutil.h>
28 #include <X11/keysym.h>
34 #include <sys/types.h>
41 #include <sys/signal.h>
46 #define PATH_MAX DEFAULT_PATH_MAX
49 #include "WindowMaker.h"
61 extern WPreferences wPreferences
;
66 wMessageDialog(WScreen
*scr
, char *title
, char *message
,
67 char *defBtn
, char *altBtn
, char *othBtn
)
74 panel
= WMCreateAlertPanel(scr
->wmscreen
, NULL
, title
, message
,
75 defBtn
, altBtn
, othBtn
);
77 parent
= XCreateSimpleWindow(dpy
, scr
->root_win
, 0, 0, 400, 180, 0, 0, 0);
79 XReparentWindow(dpy
, WMWidgetXID(panel
->win
), parent
, 0, 0);
81 wwin
= wManageInternalWindow(scr
, parent
, None
, NULL
,
82 (scr
->scr_width
- 400)/2,
83 (scr
->scr_height
- 180)/2, 400, 180);
84 wwin
->client_leader
= WMWidgetXID(panel
->win
);
86 WMMapWidget(panel
->win
);
90 while (!panel
->done
) {
93 WMNextEvent(dpy
, &event
);
94 WMHandleEvent(&event
);
97 result
= panel
->result
;
99 WMUnmapWidget(panel
->win
);
101 wUnmanageWindow(wwin
, False
, False
);
103 WMDestroyAlertPanel(panel
);
105 XDestroyWindow(dpy
, parent
);
113 wInputDialog(WScreen
*scr
, char *title
, char *message
, char **text
)
121 panel
= WMCreateInputPanel(scr
->wmscreen
, NULL
, title
, message
, *text
,
122 _("OK"), _("Cancel"));
125 parent
= XCreateSimpleWindow(dpy
, scr
->root_win
, 0, 0, 320, 160, 0, 0, 0);
126 XSelectInput(dpy
, parent
, KeyPressMask
|KeyReleaseMask
);
128 XReparentWindow(dpy
, WMWidgetXID(panel
->win
), parent
, 0, 0);
130 wwin
= wManageInternalWindow(scr
, parent
, None
, NULL
,
131 (scr
->scr_width
- 320)/2,
132 (scr
->scr_height
- 160)/2, 320, 160);
134 wwin
->client_leader
= WMWidgetXID(panel
->win
);
136 WMMapWidget(panel
->win
);
140 while (!panel
->done
) {
143 WMNextEvent(dpy
, &event
);
144 WMHandleEvent(&event
);
147 if (panel
->result
== WAPRDefault
)
148 result
= WMGetTextFieldText(panel
->text
);
152 wUnmanageWindow(wwin
, False
, False
);
154 WMDestroyInputPanel(panel
);
156 XDestroyWindow(dpy
, parent
);
171 *****************************************************************
172 * Icon Selection Panel
173 *****************************************************************
176 typedef struct IconPanel
{
189 WMButton
*previewButton
;
194 WMTextField
*fileField
;
197 WMButton
*cancelButton
;
199 WMButton
*chooseButton
;
209 listPixmaps(WScreen
*scr
, WMList
*lPtr
, char *path
)
211 struct dirent
*dentry
;
213 char pbuf
[PATH_MAX
+16];
215 IconPanel
*panel
= WMGetHangedData(lPtr
);
217 panel
->preview
= False
;
219 apath
= wexpandpath(path
);
220 dir
= opendir(apath
);
225 tmp
= _("Could not open directory ");
226 msg
= wmalloc(strlen(tmp
)+strlen(path
)+6);
230 wMessageDialog(scr
, _("Error"), msg
, _("OK"), NULL
, NULL
);
236 /* list contents in the column */
237 while ((dentry
= readdir(dir
))) {
240 if (strcmp(dentry
->d_name
, ".")==0 ||
241 strcmp(dentry
->d_name
, "..")==0)
246 strcat(pbuf
, dentry
->d_name
);
248 if (stat(pbuf
, &statb
)<0)
251 if (statb
.st_mode
& (S_IRUSR
|S_IRGRP
|S_IROTH
)
252 && statb
.st_mode
& (S_IFREG
|S_IFLNK
)) {
253 WMAddListItem(lPtr
, dentry
->d_name
);
256 WMSortListItems(lPtr
);
260 panel
->preview
= True
;
266 setViewedImage(IconPanel
*panel
, char *file
)
275 pixmap
= WMCreateBlendedPixmapFromFile(WMWidgetScreen(panel
->win
),
278 WMSetButtonEnabled(panel
->okButton
, False
);
280 WMSetLabelText(panel
->iconView
, _("Could not load image file "));
282 WMSetLabelImage(panel
->iconView
, NULL
);
284 WMSetButtonEnabled(panel
->okButton
, True
);
286 WMSetLabelText(panel
->iconView
, NULL
);
287 WMSetLabelImage(panel
->iconView
, pixmap
);
288 WMReleasePixmap(pixmap
);
294 listCallback(void *self
, void *data
)
296 WMList
*lPtr
= (WMList
*)self
;
297 IconPanel
*panel
= (IconPanel
*)data
;
300 if (lPtr
==panel
->dirList
) {
301 path
= WMGetListSelectedItem(lPtr
)->text
;
303 WMSetTextFieldText(panel
->fileField
, path
);
305 WMSetLabelImage(panel
->iconView
, NULL
);
307 WMSetButtonEnabled(panel
->okButton
, False
);
309 WMClearList(panel
->iconList
);
310 listPixmaps(panel
->scr
, panel
->iconList
, path
);
312 char *tmp
, *iconFile
;
314 path
= WMGetListSelectedItem(panel
->dirList
)->text
;
315 tmp
= wexpandpath(path
);
317 iconFile
= WMGetListSelectedItem(panel
->iconList
)->text
;
319 path
= wmalloc(strlen(tmp
)+strlen(iconFile
)+4);
322 strcat(path
, iconFile
);
324 WMSetTextFieldText(panel
->fileField
, path
);
325 setViewedImage(panel
, path
);
332 listIconPaths(WMList
*lPtr
)
337 paths
= wstrdup(wPreferences
.icon_path
);
339 path
= strtok(paths
, ":");
344 tmp
= wexpandpath(path
);
345 /* do not sort, because the order implies the order of
346 * directories searched */
347 if (access(tmp
, X_OK
)==0)
348 WMAddListItem(lPtr
, path
);
350 } while ((path
=strtok(NULL
, ":"))!=NULL
);
357 drawIconProc(WMList
*lPtr
, int index
, Drawable d
, char *text
,
358 int state
, WMRect
*rect
)
360 IconPanel
*panel
= WMGetHangedData(lPtr
);
361 GC gc
= panel
->scr
->draw_gc
;
362 GC copygc
= panel
->scr
->copy_gc
;
363 char *buffer
, *dirfile
;
368 WMScreen
*wmscr
=WMWidgetScreen(panel
->win
);
371 if(!panel
->preview
) return;
373 width
= rect
->size
.width
;
375 blackcolor
= WMBlackColor(wmscr
);
376 whitecolor
= WMWhiteColor(wmscr
);
378 dirfile
= wexpandpath(WMGetListSelectedItem(panel
->dirList
)->text
);
379 buffer
= wmalloc(strlen(dirfile
)+strlen(text
)+4);
380 sprintf(buffer
, "%s/%s", dirfile
, text
);
383 pixmap
= WMCreatePixmapFromFile(WMWidgetScreen(panel
->win
), buffer
);
386 WMRemoveListItem(lPtr
, index
);
390 XClearArea(dpy
, d
, rect
->pos
.x
, rect
->pos
.y
, width
, rect
->size
.height
,
392 XSetClipMask(dpy
, gc
, None
);
394 XDrawRectangle(dpy, d, WMColorGC(whitecolor), rect->pos.x + 5,
395 rect->pos.y +5, width - 10, 54);
397 XDrawLine(dpy
, d
, WMColorGC(whitecolor
), rect
->pos
.x
,
398 rect
->pos
.y
+rect
->size
.height
-1, rect
->pos
.x
+width
,
399 rect
->pos
.y
+rect
->size
.height
-1);
402 if (state
&WLDSSelected
) {
403 XFillRectangle(dpy
, d
, WMColorGC(whitecolor
), rect
->pos
.x
,
404 rect
->pos
.y
, width
, rect
->size
.height
);
407 size
= WMGetPixmapSize(pixmap
);
409 XSetClipMask(dpy
, copygc
, WMGetPixmapMaskXID(pixmap
));
410 XSetClipOrigin(dpy
, copygc
, rect
->pos
.x
+ (width
-size
.width
)/2,
412 XCopyArea(dpy
, WMGetPixmapXID(pixmap
), d
, copygc
, 0, 0,
413 size
.width
>100?100:size
.width
, size
.height
>64?64:size
.height
,
414 rect
->pos
.x
+ (width
-size
.width
)/2, rect
->pos
.y
+2);
418 int fheight
= WMFontHeight(panel
->normalfont
);
419 int tlen
= strlen(text
);
420 int twidth
= WMWidthOfString(panel
->normalfont
, text
, tlen
);
423 ofx
= rect
->pos
.x
+ (width
- twidth
)/2;
424 ofy
= rect
->pos
.y
+ 64 - fheight
;
428 WMDrawString(wmscr
, d
, WMColorGC(whitecolor
),
429 panel
->normalfont
, ofx
+i
, ofy
+j
,
432 WMDrawString(wmscr
, d
, WMColorGC(blackcolor
), panel
->normalfont
,
433 ofx
, ofy
, text
, tlen
);
436 WMReleasePixmap(pixmap
);
437 /* I hope it is better to do not use cache / on my box it is fast nuff */
440 WMReleaseColor(blackcolor
);
441 WMReleaseColor(whitecolor
);
446 buttonCallback(void *self
, void *clientData
)
448 WMButton
*bPtr
= (WMButton
*)self
;
449 IconPanel
*panel
= (IconPanel
*)clientData
;
452 if (bPtr
==panel
->okButton
) {
454 panel
->result
= True
;
455 } else if (bPtr
==panel
->cancelButton
) {
457 panel
->result
= False
;
458 } else if (bPtr
==panel
->previewButton
) {
459 /**** Previewer ****/
460 WMSetButtonEnabled(bPtr
, False
);
461 WMSetListUserDrawItemHeight(panel
->iconList
, 68);
462 WMSetListUserDrawProc(panel
->iconList
, drawIconProc
);
463 WMRedisplayWidget(panel
->iconList
);
464 /* for draw proc to access screen/gc */
465 /*** end preview ***/
468 else if (bPtr
==panel
->chooseButton
) {
471 op
= WMCreateOpenPanel(WMWidgetScreen(bPtr
));
473 if (WMRunModalFilePanelForDirectory(op
, NULL
, "/usr/local", NULL
, NULL
)) {
475 path
= WMGetFilePanelFile(op
);
476 WMSetTextFieldText(panel
->fileField
, path
);
477 setViewedImage(panel
, path
);
480 WMDestroyFilePanel(op
);
487 wIconChooserDialog(WScreen
*scr
, char **file
, char *instance
, char *class)
495 panel
= wmalloc(sizeof(IconPanel
));
496 memset(panel
, 0, sizeof(IconPanel
));
500 panel
->win
= WMCreateWindow(scr
->wmscreen
, "iconChooser");
501 WMResizeWidget(panel
->win
, 450, 280);
503 boldFont
= WMBoldSystemFontOfSize(scr
->wmscreen
, 12);
504 panel
->normalfont
= WMSystemFontOfSize(WMWidgetScreen(panel
->win
), 12);
506 panel
->dirLabel
= WMCreateLabel(panel
->win
);
507 WMResizeWidget(panel
->dirLabel
, 200, 20);
508 WMMoveWidget(panel
->dirLabel
, 10, 7);
509 WMSetLabelText(panel
->dirLabel
, _("Directories"));
510 WMSetLabelFont(panel
->dirLabel
, boldFont
);
511 WMSetLabelTextAlignment(panel
->dirLabel
, WACenter
);
513 WMSetLabelRelief(panel
->dirLabel
, WRSunken
);
515 panel
->iconLabel
= WMCreateLabel(panel
->win
);
516 WMResizeWidget(panel
->iconLabel
, 140, 20);
517 WMMoveWidget(panel
->iconLabel
, 215, 7);
518 WMSetLabelText(panel
->iconLabel
, _("Icons"));
519 WMSetLabelFont(panel
->iconLabel
, boldFont
);
520 WMSetLabelTextAlignment(panel
->iconLabel
, WACenter
);
522 WMReleaseFont(boldFont
);
524 color
= WMWhiteColor(scr
->wmscreen
);
525 WMSetLabelTextColor(panel
->dirLabel
, color
);
526 WMSetLabelTextColor(panel
->iconLabel
, color
);
527 WMReleaseColor(color
);
529 color
= WMDarkGrayColor(scr
->wmscreen
);
530 WMSetWidgetBackgroundColor(panel
->iconLabel
, color
);
531 WMSetWidgetBackgroundColor(panel
->dirLabel
, color
);
532 WMReleaseColor(color
);
534 WMSetLabelRelief(panel
->iconLabel
, WRSunken
);
536 panel
->dirList
= WMCreateList(panel
->win
);
537 WMResizeWidget(panel
->dirList
, 200, 170);
538 WMMoveWidget(panel
->dirList
, 10, 30);
539 WMSetListAction(panel
->dirList
, listCallback
, panel
);
541 panel
->iconList
= WMCreateList(panel
->win
);
542 WMResizeWidget(panel
->iconList
, 140, 170);
543 WMMoveWidget(panel
->iconList
, 215, 30);
544 WMSetListAction(panel
->iconList
, listCallback
, panel
);
546 WMHangData(panel
->iconList
,panel
);
548 panel
->previewButton
= WMCreateCommandButton(panel
->win
);
549 WMResizeWidget(panel
->previewButton
, 75, 26);
550 WMMoveWidget(panel
->previewButton
, 365, 130);
551 WMSetButtonText(panel
->previewButton
, _("Preview"));
552 WMSetButtonAction(panel
->previewButton
, buttonCallback
, panel
);
554 panel
->iconView
= WMCreateLabel(panel
->win
);
555 WMResizeWidget(panel
->iconView
, 75, 75);
556 WMMoveWidget(panel
->iconView
, 365, 40);
557 WMSetLabelImagePosition(panel
->iconView
, WIPOverlaps
);
558 WMSetLabelRelief(panel
->iconView
, WRSunken
);
559 WMSetLabelTextAlignment(panel
->iconView
, WACenter
);
561 panel
->fileLabel
= WMCreateLabel(panel
->win
);
562 WMResizeWidget(panel
->fileLabel
, 80, 20);
563 WMMoveWidget(panel
->fileLabel
, 10, 210);
564 WMSetLabelText(panel
->fileLabel
, _("File Name:"));
566 panel
->fileField
= WMCreateTextField(panel
->win
);
567 WMResizeWidget(panel
->fileField
, 345, 20);
568 WMMoveWidget(panel
->fileField
, 95, 210);
569 WMSetTextFieldEditable(panel
->fileField
, False
);
571 panel
->okButton
= WMCreateCommandButton(panel
->win
);
572 WMResizeWidget(panel
->okButton
, 80, 26);
573 WMMoveWidget(panel
->okButton
, 360, 240);
574 WMSetButtonText(panel
->okButton
, _("OK"));
575 WMSetButtonEnabled(panel
->okButton
, False
);
576 WMSetButtonAction(panel
->okButton
, buttonCallback
, panel
);
578 panel
->cancelButton
= WMCreateCommandButton(panel
->win
);
579 WMResizeWidget(panel
->cancelButton
, 80, 26);
580 WMMoveWidget(panel
->cancelButton
, 270, 240);
581 WMSetButtonText(panel
->cancelButton
, _("Cancel"));
582 WMSetButtonAction(panel
->cancelButton
, buttonCallback
, panel
);
584 panel
->chooseButton
= WMCreateCommandButton(panel
->win
);
585 WMResizeWidget(panel
->chooseButton
, 110, 26);
586 WMMoveWidget(panel
->chooseButton
, 150, 240);
587 WMSetButtonText(panel
->chooseButton
, _("Choose File"));
588 WMSetButtonAction(panel
->chooseButton
, buttonCallback
, panel
);
590 WMRealizeWidget(panel
->win
);
591 WMMapSubwidgets(panel
->win
);
593 parent
= XCreateSimpleWindow(dpy
, scr
->root_win
, 0, 0, 450, 280, 0, 0, 0);
595 XReparentWindow(dpy
, WMWidgetXID(panel
->win
), parent
, 0, 0);
600 tmp
= wmalloc((instance
? strlen(instance
) : 0)
601 + (class ? strlen(class) : 0) + 32);
603 if (tmp
&& (instance
|| class))
604 sprintf(tmp
, "%s [%s.%s]", _("Icon Chooser"), instance
, class);
606 strcpy(tmp
, _("Icon Chooser"));
608 wwin
= wManageInternalWindow(scr
, parent
, None
, tmp
,
609 (scr
->scr_width
- 450)/2,
610 (scr
->scr_height
- 280)/2, 450, 280);
614 /* put icon paths in the list */
615 listIconPaths(panel
->dirList
);
617 WMMapWidget(panel
->win
);
621 while (!panel
->done
) {
624 WMNextEvent(dpy
, &event
);
625 WMHandleEvent(&event
);
629 char *defaultPath
, *wantedPath
;
631 /* check if the file the user selected is not the one that
632 * would be loaded by default with the current search path */
633 *file
= WMGetListSelectedItem(panel
->iconList
)->text
;
638 defaultPath
= FindImage(wPreferences
.icon_path
, *file
);
639 wantedPath
= WMGetTextFieldText(panel
->fileField
);
640 /* if the file is not the default, use full path */
641 if (strcmp(wantedPath
, defaultPath
)!=0) {
644 *file
= wstrdup(*file
);
653 WMReleaseFont(panel
->normalfont
);
655 WMUnmapWidget(panel
->win
);
657 WMDestroyWidget(panel
->win
);
659 wUnmanageWindow(wwin
, False
, False
);
663 XDestroyWindow(dpy
, parent
);
665 return panel
->result
;
670 ***********************************************************************
672 ***********************************************************************
706 #define COPYRIGHT_TEXT \
707 "Copyright \xa9 1997~1999 Alfredo K. Kojima <kojima@windowmaker.org>\n"\
708 "Copyright \xa9 1998,1999 Dan Pascu <dan@windowmaker.org>"
712 static InfoPanel
*thePanel
= NULL
;
715 destroyInfoPanel(WCoreWindow
*foo
, void *data
, XEvent
*event
)
718 if (thePanel
->timer
) {
719 WMDeleteTimerHandler(thePanel
->timer
);
721 if (thePanel
->oldPix
) {
722 WMReleasePixmap(thePanel
->oldPix
);
724 if (thePanel
->icon
) {
725 RDestroyImage(thePanel
->icon
);
728 RDestroyImage(thePanel
->pic
);
730 #endif /* SILLYNESS */
731 WMUnmapWidget(thePanel
);
733 wUnmanageWindow(thePanel
->wwin
, False
, False
);
735 WMDestroyWidget(thePanel
->win
);
744 renderText(WMScreen
*scr
, char *text
, char *font
, RColor
*from
, RColor
*to
)
746 WMPixmap
*wpix
= NULL
;
749 RContext
*rc
= WMScreenRContext(scr
);
750 XFontStruct
*f
= NULL
;
754 f
= XLoadQueryFont(dpy
, font
);
758 w
= XTextWidth(f
, text
, strlen(text
));
759 h
= f
->ascent
+f
->descent
;
761 mask
= XCreatePixmap(dpy
, rc
->drawable
, w
, h
, 1);
762 gc
= XCreateGC(dpy
, mask
, 0, NULL
);
763 XSetForeground(dpy
, gc
, 0);
764 XSetFont(dpy
, gc
, f
->fid
);
765 XFillRectangle(dpy
, mask
, gc
, 0, 0, w
, h
);
767 XSetForeground(dpy
, gc
, 1);
768 XDrawString(dpy
, mask
, gc
, 0, f
->ascent
, text
, strlen(text
));
769 XSetLineAttributes(dpy
, gc
, 3, LineSolid
, CapRound
, JoinMiter
);
770 XDrawLine(dpy
, mask
, gc
, 0, h
-2, w
, h
-2);
772 grad
= XCreatePixmap(dpy
, rc
->drawable
, w
, h
, rc
->depth
);
776 color
= WMBlackColor(scr
);
777 XFillRectangle(dpy
, grad
, WMColorGC(color
), 0, 0, w
, h
);
778 WMReleaseColor(color
);
781 wpix
= WMCreatePixmapFromXPixmaps(scr
, grad
, mask
, w
, h
, rc
->depth
);
792 extern WMPixmap
*DoXThing();
793 extern Bool
InitXThing();
796 logoPushCallback(void *data
)
798 InfoPanel
*panel
= (InfoPanel
*)data
;
802 static int jingobeu
[] = {
803 329, 150, -1, 100, 329, 150, -1, 100, 329, 300, -1, 250,
804 329, 150, -1, 100, 329, 150, -1, 100, 329, 300, -1, 250,
805 329, 150, 392, 150, 261, 150, 293, 150, 329, 400, -1, 400, 0
813 if(jingobeu
[panel
->x
-1]==0){panel
->x
=-1;}else if(jingobeu
[panel
->x
814 -1]<0){panel
->x
++;c
=jingobeu
[panel
->x
-1]/50;panel
->x
++;}else if(c
==0){
815 kc
.bell_pitch
=jingobeu
[panel
->x
-1];panel
->x
++;kc
.bell_percent
=50;c
=
816 jingobeu
[panel
->x
-1]/50;kc
.bell_duration
=jingobeu
[panel
->x
-1];panel
->x
++;
817 XChangeKeyboardControl(dpy
,KBBellPitch
|KBBellDuration
|KBBellPercent
,&kc
);
818 XBell(dpy
,50);XFlush(dpy
);}else{c
--;}}
819 if (!(panel
->cycle
% 4)) {
822 p
= DoXThing(panel
->wwin
);
823 WMSetLabelImage(panel
->logoL
, p
);
825 } else if (panel
->cycle
< 30) {
829 image
= RCloneImage(panel
->icon
);
830 RCombineImagesWithOpaqueness(image
, panel
->pic
, panel
->cycle
*255/30);
831 pix
= WMCreatePixmapFromRImage(panel
->scr
->wmscreen
, image
, 128);
832 RDestroyImage(image
);
833 WMSetLabelImage(panel
->logoL
, pix
);
834 WMReleasePixmap(pix
);
837 i
= panel
->cycle
%200;
839 len
= strlen(panel
->str
);
841 strncpy(buffer
, panel
->str
, i
<len
? i
: len
);
843 memset(&buffer
[len
], ' ', i
-len
);
845 strncpy(buffer
, panel
->str
, i
<len
? i
: len
);
847 memset(&buffer
[len
], ' ', i
-len
);
849 WMSetLabelText(panel
->versionL
, buffer
);
851 panel
->timer
= WMAddTimerHandler(50, logoPushCallback
, panel
);
857 handleLogoPush(XEvent
*event
, void *data
)
859 InfoPanel
*panel
= (InfoPanel
*)data
;
860 static int broken
= 0;
861 static int clicks
= 0;
862 static char *pic_data
[] = {
922 " ....XoO+@##+O$%.... ",
923 " ...%X&*========-;;:o... ",
924 " ...>.>,<122222222222134@... ",
925 " ..>5678912222222222222220q%.. ",
926 " ..$.&-w2222222222222222222er>.. ",
927 " ..O.t31222222222222222222222y4>.. ",
928 " ...O5u3222222222222222222222222yri... ",
929 " ..>p&a22222222222222222222222222wso.. ",
930 " ..ids91222222222222222222222222222wfi.. ",
931 " ..X.7w222222wgs-w2222222213=g0222222<hi.. ",
932 " ..Xuj2222222<@X5=222222229k@l:022222y4i.. ",
933 " .Xdz22222222*X%.s22222222axo%$-222222<c>.. ",
934 " ..o7y22222222v...r222222223hX.i82222221si.. ",
935 "..io*222222222&...u22222222yt..%*22222220:%. ",
936 "..>k02222222227...f222222222v..X=222222229t. ",
937 "..dz12222222220ui:y2222222223d%qw222222221g. ",
938 ".%vw222222222221y2222222222219*y2222222222wd.",
939 ".X;2222222222222222222222222222222222222222b.",
940 ".i*2222222222222222222222222222222222222222v.",
941 ".i*2222222222222222222222222222222222222222;.",
942 ".i*22222222222222222222222222222222222222228.",
943 ".>*2222222222222222222222222222222222222222=.",
944 ".i*22222222222222222222222222222222222222228.",
945 ".i*2222222222222222222222222222222222222222;.",
946 ".X*222222222222222222222222222222we12222222r.",
947 ".Xs12222222w3aw22222222222222222y8s0222222wk.",
948 ".Xq02222222a,na22222222222222222zm6zwy2222gi.",
949 "..>*22222y<:Xcj22222222222222222-o$k;;02228..",
950 "..i7y2220rhX.:y22222222222222222jtiXd,a220,..",
951 " .X@z222a,do%kj2222222222222222wMX5q;gw228%..",
952 " ..58222wagsh6ry222222222222221;>Of0w222y:...",
953 " ...:e2222218mdz22222222222222a&$vw222220@...",
954 " ...O-122222y:.u02222222222229q$uj222221r... ",
955 " ..%&a1222223&573w2222222219NOxz122221z>... ",
956 " ...t3222221-l$nr8ay1222yzbo,=12222w-5... ",
957 " ..X:022222w-k+>o,7s**s7xOn=12221<f5... ",
958 " ..o:9222221j8:&Bl>>>>ihv<12221=dX... ",
959 " ..Xb9122222109g-****;<y22221zn%... ",
960 " ..X&801222222222222222222w-h.... ",
961 " ...o:=022222222222222221=lX... ",
962 " ..X@:;3w2222222222210fO... ",
963 " ...XX&v8<30000003-N@... ",
964 " .....XmnbN:q&Bo.... ",
966 static char *msgs
[] = {
967 "Sloppy focus is a *?#@",
968 "Repent! Sloppy focus users will burn in hell!!!",
974 if (!panel
->timer
&& !broken
&& clicks
> 0) {
981 file
= wDefaultGetIconFile(panel
->scr
, "Logo", "WMPanel", False
);
987 path
= FindImage(wPreferences
.icon_path
, file
);
993 panel
->icon
= RLoadImage(panel
->scr
->rcontext
, path
, 0);
1001 panel
->pic
= RGetImageFromXPMData(panel
->scr
->rcontext
, pic_data
);
1002 if (!panel
->pic
|| panel
->icon
->width
!=panel
->pic
->width
1003 || panel
->icon
->height
!=panel
->pic
->height
) {
1005 RDestroyImage(panel
->icon
);
1008 RDestroyImage(panel
->pic
);
1020 RCombineImageWithColor(panel
->icon
, &color
);
1021 RCombineImageWithColor(panel
->pic
, &color
);
1025 panel
->str
= msgs
[rand()%(sizeof(msgs
)/sizeof(char*))];
1027 panel
->timer
= WMAddTimerHandler(50, logoPushCallback
, panel
);
1029 panel
->oldPix
= WMRetainPixmap(WMGetLabelImage(panel
->logoL
));
1030 } else if (panel
->timer
) {
1035 WMSetLabelImage(panel
->logoL
, panel
->oldPix
);
1036 WMReleasePixmap(panel
->oldPix
);
1037 panel
->oldPix
= NULL
;
1039 WMDeleteTimerHandler(panel
->timer
);
1040 panel
->timer
= NULL
;
1042 sprintf(version
, "Version %s", VERSION
);
1043 WMSetLabelText(panel
->versionL
, version
);
1048 while (XCheckTypedWindowEvent(dpy
, WMWidgetXID(panel
->versionL
),
1052 #endif /* SILLYNESS */
1056 wShowInfoPanel(WScreen
*scr
)
1066 RColor color1
, color2
;
1080 if (thePanel
->scr
== scr
) {
1081 wRaiseFrame(thePanel
->wwin
->frame
->core
);
1082 wSetFocusTo(scr
, thePanel
->wwin
);
1087 panel
= wmalloc(sizeof(InfoPanel
));
1088 memset(panel
, 0, sizeof(InfoPanel
));
1092 panel
->win
= WMCreateWindow(scr
->wmscreen
, "info");
1093 WMResizeWidget(panel
->win
, 382, 230);
1095 logo
= WMGetApplicationIconImage(scr
->wmscreen
);
1097 size
= WMGetPixmapSize(logo
);
1098 panel
->logoL
= WMCreateLabel(panel
->win
);
1099 WMResizeWidget(panel
->logoL
, 64, 64);
1100 WMMoveWidget(panel
->logoL
, 30, 20);
1101 WMSetLabelImagePosition(panel
->logoL
, WIPImageOnly
);
1102 WMSetLabelImage(panel
->logoL
, logo
);
1104 WMCreateEventHandler(WMWidgetView(panel
->logoL
), ButtonPressMask
,
1105 handleLogoPush
, panel
);
1109 panel
->name1L
= WMCreateLabel(panel
->win
);
1110 WMResizeWidget(panel
->name1L
, 240, 30);
1111 WMMoveWidget(panel
->name1L
, 100, 30);
1116 color2
.green
= 0x50;
1118 logo
= renderText(scr
->wmscreen
, "GNU Window Maker",
1119 "-*-utopia-*-r-*-*-25-*", &color1
, &color2
);
1121 WMSetLabelImagePosition(panel
->name1L
, WIPImageOnly
);
1122 WMSetLabelImage(panel
->name1L
, logo
);
1123 WMReleasePixmap(logo
);
1125 font
= WMBoldSystemFontOfSize(scr
->wmscreen
, 20);
1127 WMSetLabelFont(panel
->name1L
, font
);
1128 WMReleaseFont(font
);
1130 WMSetLabelTextAlignment(panel
->name1L
, WACenter
);
1131 WMSetLabelText(panel
->name1L
, "GNU Window Maker");
1134 panel
->name2L
= WMCreateLabel(panel
->win
);
1135 WMResizeWidget(panel
->name2L
, 240, 24);
1136 WMMoveWidget(panel
->name2L
, 100, 60);
1137 font
= WMBoldSystemFontOfSize(scr
->wmscreen
, 18);
1139 WMSetLabelFont(panel
->name2L
, font
);
1140 WMReleaseFont(font
);
1143 WMSetLabelTextAlignment(panel
->name2L
, WACenter
);
1144 WMSetLabelText(panel
->name2L
, "Window Manager for X");
1147 sprintf(version
, "Version %s", VERSION
);
1148 panel
->versionL
= WMCreateLabel(panel
->win
);
1149 WMResizeWidget(panel
->versionL
, 310, 16);
1150 WMMoveWidget(panel
->versionL
, 30, 95);
1151 WMSetLabelTextAlignment(panel
->versionL
, WARight
);
1152 WMSetLabelText(panel
->versionL
, version
);
1153 WMSetLabelWraps(panel
->versionL
, False
);
1155 panel
->copyrL
= WMCreateLabel(panel
->win
);
1156 WMResizeWidget(panel
->copyrL
, 340, 40);
1157 WMMoveWidget(panel
->copyrL
, 15, 185);
1158 WMSetLabelTextAlignment(panel
->copyrL
, WALeft
);
1159 WMSetLabelText(panel
->copyrL
, COPYRIGHT_TEXT
);
1160 /* we want the (c) character in the helvetica font */
1161 font
= WMCreateNormalFont(scr
->wmscreen
, HELVETICA10_FONT
);
1163 WMSetLabelFont(panel
->copyrL
, font
);
1166 switch (scr
->w_depth
) {
1168 strcpy(version
, "32 thousand");
1171 strcpy(version
, "64 thousand");
1175 strcpy(version
, "16 million");
1178 sprintf(version
, "%d", 1<<scr
->w_depth
);
1182 sprintf(buffer
, "Using visual 0x%x: %s %ibpp (%s colors)\n",
1183 (unsigned)scr
->w_visual
->visualid
,
1184 visuals
[scr
->w_visual
->class], scr
->w_depth
, version
);
1186 strcat(buffer
, "Supported image formats: ");
1187 strl
= RSupportedFileFormats();
1188 for (i
=0; strl
[i
]!=NULL
; i
++) {
1189 strcat(buffer
, strl
[i
]);
1190 strcat(buffer
, " ");
1193 strcat(buffer
, "\nAdditional Support For: ");
1206 list
[j
++] = "GNOME";
1212 list
[j
++] = "Sound";
1216 for (i
= 0; i
< j
; i
++) {
1219 strcat(buf
, " and ");
1223 strcat(buf
, list
[i
]);
1225 strcat(buffer
, buf
);
1229 panel
->infoL
= WMCreateLabel(panel
->win
);
1230 WMResizeWidget(panel
->infoL
, 350, 75);
1231 WMMoveWidget(panel
->infoL
, 15, 115);
1232 WMSetLabelText(panel
->infoL
, buffer
);
1234 WMSetLabelFont(panel
->infoL
, font
);
1235 WMReleaseFont(font
);
1239 WMRealizeWidget(panel
->win
);
1240 WMMapSubwidgets(panel
->win
);
1242 parent
= XCreateSimpleWindow(dpy
, scr
->root_win
, 0, 0, 382, 230, 0, 0, 0);
1244 XReparentWindow(dpy
, WMWidgetXID(panel
->win
), parent
, 0, 0);
1246 WMMapWidget(panel
->win
);
1248 wwin
= wManageInternalWindow(scr
, parent
, None
, "Info",
1249 (scr
->scr_width
- 382)/2,
1250 (scr
->scr_height
- 230)/2, 382, 230);
1252 WSETUFLAG(wwin
, no_closable
, 0);
1253 WSETUFLAG(wwin
, no_close_button
, 0);
1254 #ifdef XKB_BUTTON_HINT
1255 wFrameWindowHideButton(wwin
->frame
, WFF_LANGUAGE_BUTTON
);
1257 wWindowUpdateButtonImages(wwin
);
1258 wFrameWindowShowButton(wwin
->frame
, WFF_RIGHT_BUTTON
);
1259 wwin
->frame
->on_click_right
= destroyInfoPanel
;
1267 if (InitXThing(panel
->scr
)) {
1268 panel
->timer
= WMAddTimerHandler(100, logoPushCallback
, panel
);
1271 panel
->str
= "Merry Christmas!";
1272 panel
->oldPix
= WMRetainPixmap(WMGetLabelImage(panel
->logoL
));
1279 ***********************************************************************
1281 ***********************************************************************
1296 #define LICENSE_TEXT \
1297 " Window Maker is free software; you can redistribute it and/or modify "\
1298 "it under the terms of the GNU General Public License as published "\
1299 "by the Free Software Foundation; either version 2 of the License, "\
1300 "or (at your option) any later version.\n\n\n"\
1301 " Window Maker is distributed in the hope that it will be useful, but "\
1302 "WITHOUT ANY WARRANTY; without even the implied warranty of "\
1303 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU "\
1304 "General Public License for more details.\n\n\n"\
1305 " You should have received a copy of the GNU General Public License "\
1306 "along with this program; if not, write to the Free Software "\
1307 "Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA "\
1311 static LegalPanel
*legalPanel
= NULL
;
1314 destroyLegalPanel(WCoreWindow
*foo
, void *data
, XEvent
*event
)
1316 WMUnmapWidget(legalPanel
->win
);
1318 WMDestroyWidget(legalPanel
->win
);
1320 wUnmanageWindow(legalPanel
->wwin
, False
, False
);
1329 wShowLegalPanel(WScreen
*scr
)
1336 if (legalPanel
->scr
== scr
) {
1337 wRaiseFrame(legalPanel
->wwin
->frame
->core
);
1338 wSetFocusTo(scr
, legalPanel
->wwin
);
1343 panel
= wmalloc(sizeof(LegalPanel
));
1347 panel
->win
= WMCreateWindow(scr
->wmscreen
, "legal");
1348 WMResizeWidget(panel
->win
, 420, 250);
1351 panel
->licenseL
= WMCreateLabel(panel
->win
);
1352 WMResizeWidget(panel
->licenseL
, 400, 230);
1353 WMMoveWidget(panel
->licenseL
, 10, 10);
1354 WMSetLabelTextAlignment(panel
->licenseL
, WALeft
);
1355 WMSetLabelText(panel
->licenseL
, LICENSE_TEXT
);
1356 WMSetLabelRelief(panel
->licenseL
, WRGroove
);
1358 WMRealizeWidget(panel
->win
);
1359 WMMapSubwidgets(panel
->win
);
1361 parent
= XCreateSimpleWindow(dpy
, scr
->root_win
, 0, 0, 420, 250, 0, 0, 0);
1363 XReparentWindow(dpy
, WMWidgetXID(panel
->win
), parent
, 0, 0);
1365 wwin
= wManageInternalWindow(scr
, parent
, None
, "Legal",
1366 (scr
->scr_width
- 420)/2,
1367 (scr
->scr_height
- 250)/2, 420, 250);
1369 WSETUFLAG(wwin
, no_closable
, 0);
1370 WSETUFLAG(wwin
, no_close_button
, 0);
1371 wWindowUpdateButtonImages(wwin
);
1372 wFrameWindowShowButton(wwin
->frame
, WFF_RIGHT_BUTTON
);
1373 #ifdef XKB_BUTTON_HINT
1374 wFrameWindowHideButton(wwin
->frame
, WFF_LANGUAGE_BUTTON
);
1376 wwin
->frame
->on_click_right
= destroyLegalPanel
;
1380 WMMapWidget(panel
->win
);
1389 ***********************************************************************
1390 * Crashing Dialog Panel
1391 ***********************************************************************
1394 extern WDDomain
*WDWindowAttributes
;
1397 typedef struct _CrashPanel
{
1398 WMWindow
*win
; /* main window */
1400 WMLabel
*iconL
; /* application icon */
1401 WMLabel
*nameL
; /* title of panel */
1403 WMFrame
*sepF
; /* separator frame */
1405 WMLabel
*noteL
; /* Title of note */
1406 WMLabel
*note2L
; /* body of note with what happened */
1408 WMFrame
*whatF
; /* "what to do next" frame */
1409 WMPopUpButton
*whatP
; /* action selection popup button */
1411 WMButton
*okB
; /* ok button */
1413 Bool done
; /* if finished with this dialog */
1414 int action
; /* what to do after */
1422 handleKeyPress(XEvent
*event
, void *clientData
)
1424 CrashPanel
*panel
= (CrashPanel
*)clientData
;
1426 if (event
->xkey
.keycode
== panel
->retKey
) {
1427 WMPerformButtonClick(panel
->okB
);
1433 okButtonCallback(void *self
, void *clientData
)
1435 CrashPanel
*panel
= (CrashPanel
*)clientData
;
1442 setCrashAction(void *self
, void *clientData
)
1444 WMPopUpButton
*pop
= (WMPopUpButton
*)self
;
1445 CrashPanel
*panel
= (CrashPanel
*)clientData
;
1447 panel
->action
= WMGetPopUpButtonSelectedItem(pop
);
1452 getWindowMakerIconImage(WMScreen
*scr
)
1454 proplist_t dict
, key
, option
, value
=NULL
;
1458 PLSetStringCmpHook(NULL
);
1460 key
= PLMakeString("Logo.WMPanel");
1461 option
= PLMakeString("Icon");
1463 dict
= PLGetDictionaryEntry(WDWindowAttributes
->dictionary
, key
);
1466 value
= PLGetDictionaryEntry(dict
, option
);
1472 PLSetStringCmpHook(StringCompareHook
);
1474 if (value
&& PLIsString(value
)) {
1475 path
= FindImage(wPreferences
.icon_path
, PLGetString(value
));
1480 image
= RLoadImage(WMScreenRContext(scr
), path
, 0);
1482 pix
= WMCreatePixmapFromRImage(scr
, image
, 0);
1483 RDestroyImage(image
);
1498 wShowCrashingDialogPanel(int whatSig
)
1504 int screen_no
, scr_width
, scr_height
;
1508 panel
= wmalloc(sizeof(CrashPanel
));
1509 memset(panel
, 0, sizeof(CrashPanel
));
1511 screen_no
= DefaultScreen(dpy
);
1512 scr_width
= WidthOfScreen(ScreenOfDisplay(dpy
, screen_no
));
1513 scr_height
= HeightOfScreen(ScreenOfDisplay(dpy
, screen_no
));
1515 scr
= WMCreateScreen(dpy
, screen_no
);
1517 wsyserror(_("cannot open connection for crashing dialog panel. Aborting."));
1521 panel
->retKey
= XKeysymToKeycode(dpy
, XK_Return
);
1523 panel
->win
= WMCreateWindow(scr
, "crashingDialog");
1524 WMResizeWidget(panel
->win
, PWIDTH
, PHEIGHT
);
1525 WMMoveWidget(panel
->win
, (scr_width
- PWIDTH
)/2, (scr_height
- PHEIGHT
)/2);
1527 logo
= getWindowMakerIconImage(scr
);
1529 panel
->iconL
= WMCreateLabel(panel
->win
);
1530 WMResizeWidget(panel
->iconL
, 64, 64);
1531 WMMoveWidget(panel
->iconL
, 10, 10);
1532 WMSetLabelImagePosition(panel
->iconL
, WIPImageOnly
);
1533 WMSetLabelImage(panel
->iconL
, logo
);
1536 panel
->nameL
= WMCreateLabel(panel
->win
);
1537 WMResizeWidget(panel
->nameL
, 190, 18);
1538 WMMoveWidget(panel
->nameL
, 80, 35);
1539 WMSetLabelTextAlignment(panel
->nameL
, WALeft
);
1540 font
= WMBoldSystemFontOfSize(scr
, 18);
1541 WMSetLabelFont(panel
->nameL
, font
);
1542 WMReleaseFont(font
);
1543 WMSetLabelText(panel
->nameL
, _("Fatal error"));
1545 panel
->sepF
= WMCreateFrame(panel
->win
);
1546 WMResizeWidget(panel
->sepF
, PWIDTH
+4, 2);
1547 WMMoveWidget(panel
->sepF
, -2, 80);
1549 panel
->noteL
= WMCreateLabel(panel
->win
);
1550 WMResizeWidget(panel
->noteL
, PWIDTH
-20, 40);
1551 WMMoveWidget(panel
->noteL
, 10, 90);
1552 WMSetLabelTextAlignment(panel
->noteL
, WAJustified
);
1553 #ifdef SYS_SIGLIST_DECLARED
1554 sprintf(buf
, _("Window Maker received signal %i\n(%s)."),
1555 whatSig
, sys_siglist
[whatSig
]);
1557 sprintf(buf
, _("Window Maker received signal %i."), whatSig
);
1559 WMSetLabelText(panel
->noteL
, buf
);
1561 panel
->note2L
= WMCreateLabel(panel
->win
);
1562 WMResizeWidget(panel
->note2L
, PWIDTH
-20, 100);
1563 WMMoveWidget(panel
->note2L
, 10, 130);
1564 WMSetLabelTextAlignment(panel
->note2L
, WALeft
);
1565 WMSetLabelText(panel
->note2L
,
1566 _(" This fatal error occured probably due to a bug."
1567 " Please fill the included BUGFORM and "
1568 "report it to bugs@windowmaker.org."));
1571 panel
->whatF
= WMCreateFrame(panel
->win
);
1572 WMResizeWidget(panel
->whatF
, PWIDTH
-20, 50);
1573 WMMoveWidget(panel
->whatF
, 10, 240);
1574 WMSetFrameTitle(panel
->whatF
, _("What do you want to do now?"));
1576 panel
->whatP
= WMCreatePopUpButton(panel
->whatF
);
1577 WMResizeWidget(panel
->whatP
, PWIDTH
-20-70, 20);
1578 WMMoveWidget(panel
->whatP
, 35, 20);
1579 WMSetPopUpButtonPullsDown(panel
->whatP
, False
);
1580 WMSetPopUpButtonText(panel
->whatP
, _("Select action"));
1581 WMAddPopUpButtonItem(panel
->whatP
, _("Abort and leave a core file"));
1582 WMAddPopUpButtonItem(panel
->whatP
, _("Restart Window Maker"));
1583 WMAddPopUpButtonItem(panel
->whatP
, _("Start alternate window manager"));
1584 WMSetPopUpButtonAction(panel
->whatP
, setCrashAction
, panel
);
1585 WMSetPopUpButtonSelectedItem(panel
->whatP
, WMRestart
);
1586 panel
->action
= WMRestart
;
1588 WMMapSubwidgets(panel
->whatF
);
1590 panel
->okB
= WMCreateCommandButton(panel
->win
);
1591 WMResizeWidget(panel
->okB
, 80, 26);
1592 WMMoveWidget(panel
->okB
, 205, 309);
1593 WMSetButtonText(panel
->okB
, _("OK"));
1594 WMSetButtonImage(panel
->okB
, WMGetSystemPixmap(scr
, WSIReturnArrow
));
1595 WMSetButtonAltImage(panel
->okB
, WMGetSystemPixmap(scr
, WSIHighlightedReturnArrow
));
1596 WMSetButtonImagePosition(panel
->okB
, WIPRight
);
1597 WMSetButtonAction(panel
->okB
, okButtonCallback
, panel
);
1601 WMCreateEventHandler(WMWidgetView(panel
->win
), KeyPressMask
,
1602 handleKeyPress
, panel
);
1604 WMRealizeWidget(panel
->win
);
1605 WMMapSubwidgets(panel
->win
);
1607 WMMapWidget(panel
->win
);
1609 XSetInputFocus(dpy
, WMWidgetXID(panel
->win
), RevertToParent
, CurrentTime
);
1611 while (!panel
->done
) {
1614 WMNextEvent(dpy
, &event
);
1615 WMHandleEvent(&event
);
1618 action
= panel
->action
;
1620 WMUnmapWidget(panel
->win
);
1621 WMDestroyWidget(panel
->win
);
1630 /*****************************************************************************
1631 * About GNUstep Panel
1632 *****************************************************************************/
1636 drawGNUstepLogo(Display
*dpy
, Drawable d
, int width
, int height
,
1637 unsigned long blackPixel
, unsigned long whitePixel
)
1641 XRectangle rects
[3];
1643 gcv
.foreground
= blackPixel
;
1644 gc
= XCreateGC(dpy
, d
, GCForeground
, &gcv
);
1646 XFillArc(dpy
, d
, gc
, width
/45, height
/45,
1647 width
- 2*width
/45, height
- 2*height
/45, 0, 360*64);
1650 rects
[0].y
= 37*height
/45;
1651 rects
[0].width
= width
/3;
1652 rects
[0].height
= height
- rects
[0].y
;
1654 rects
[1].x
= rects
[0].width
;
1655 rects
[1].y
= height
/2;
1656 rects
[1].width
= width
- 2*width
/3;
1657 rects
[1].height
= height
- rects
[1].y
;
1659 rects
[2].x
= 2*width
/3;
1660 rects
[2].y
= height
- 37*height
/45;
1661 rects
[2].width
= width
/3;
1662 rects
[2].height
= height
- rects
[2].y
;
1664 XSetClipRectangles(dpy
, gc
, 0, 0, rects
, 3, Unsorted
);
1665 XFillRectangle(dpy
, d
, gc
, 0, 0, width
, height
);
1667 XSetForeground(dpy
, gc
, whitePixel
);
1668 XFillArc(dpy
, d
, gc
, width
/45, height
/45,
1669 width
- 2*width
/45, height
- 2*height
/45, 0, 360*64);
1676 #define GNUSTEP_TEXT \
1677 "Window Maker is part of the GNUstep project.\n"\
1678 "The GNUstep project aims to create a free\n"\
1679 "implementation of the OpenStep(tm) specification\n"\
1680 "which is a object-oriented framework for\n"\
1681 "creating advanced graphical, multi-platform\n"\
1682 "applications. Aditionally, a development and\n"\
1683 "user desktop enviroment will be created on top\n"\
1684 "of the framework. For more information about\n"\
1685 "GNUstep, please visit: www.gnustep.org"
1700 static GNUstepPanel
*gnustepPanel
= NULL
;
1703 destroyGNUstepPanel(WCoreWindow
*foo
, void *data
, XEvent
*event
)
1705 WMUnmapWidget(gnustepPanel
->win
);
1707 WMDestroyWidget(gnustepPanel
->win
);
1709 wUnmanageWindow(gnustepPanel
->wwin
, False
, False
);
1713 gnustepPanel
= NULL
;
1718 wShowGNUstepPanel(WScreen
*scr
)
1720 GNUstepPanel
*panel
;
1727 if (gnustepPanel
->scr
== scr
) {
1728 wRaiseFrame(gnustepPanel
->wwin
->frame
->core
);
1729 wSetFocusTo(scr
, gnustepPanel
->wwin
);
1734 panel
= wmalloc(sizeof(GNUstepPanel
));
1738 panel
->win
= WMCreateWindow(scr
->wmscreen
, "About GNUstep");
1739 WMResizeWidget(panel
->win
, 325, 200);
1741 pixmap
= WMCreatePixmap(scr
->wmscreen
, 130, 130,
1742 WMScreenDepth(scr
->wmscreen
), True
);
1744 color
= WMCreateNamedColor(scr
->wmscreen
, "gray50", True
);
1746 drawGNUstepLogo(dpy
, WMGetPixmapXID(pixmap
), 130, 130,
1747 WMColorPixel(color
), scr
->white_pixel
);
1749 WMReleaseColor(color
);
1751 XSetForeground(dpy
, scr
->mono_gc
, 0);
1752 XFillRectangle(dpy
, WMGetPixmapMaskXID(pixmap
), scr
->mono_gc
, 0, 0,
1754 drawGNUstepLogo(dpy
, WMGetPixmapMaskXID(pixmap
), 130, 130, 1, 1);
1756 panel
->gstepL
= WMCreateLabel(panel
->win
);
1757 WMResizeWidget(panel
->gstepL
, 285, 64);
1758 WMMoveWidget(panel
->gstepL
, 20, 0);
1759 WMSetLabelTextAlignment(panel
->gstepL
, WARight
);
1760 WMSetLabelText(panel
->gstepL
, "GNUstep");
1762 WMFont
*font
= WMBoldSystemFontOfSize(scr
->wmscreen
, 24);
1764 WMSetLabelFont(panel
->gstepL
, font
);
1765 WMReleaseFont(font
);
1768 panel
->textL
= WMCreateLabel(panel
->win
);
1769 WMResizeWidget(panel
->textL
, 275, 130);
1770 WMMoveWidget(panel
->textL
, 30, 50);
1771 WMSetLabelTextAlignment(panel
->textL
, WARight
);
1772 WMSetLabelImagePosition(panel
->textL
, WIPOverlaps
);
1773 WMSetLabelText(panel
->textL
, GNUSTEP_TEXT
);
1774 WMSetLabelImage(panel
->textL
, pixmap
);
1776 WMReleasePixmap(pixmap
);
1778 WMRealizeWidget(panel
->win
);
1779 WMMapSubwidgets(panel
->win
);
1781 parent
= XCreateSimpleWindow(dpy
, scr
->root_win
, 0, 0, 325, 200, 0, 0, 0);
1783 XReparentWindow(dpy
, WMWidgetXID(panel
->win
), parent
, 0, 0);
1785 wwin
= wManageInternalWindow(scr
, parent
, None
, "About GNUstep",
1786 (scr
->scr_width
- 325)/2,
1787 (scr
->scr_height
- 200)/2, 325, 200);
1789 WSETUFLAG(wwin
, no_closable
, 0);
1790 WSETUFLAG(wwin
, no_close_button
, 0);
1791 wWindowUpdateButtonImages(wwin
);
1792 wFrameWindowShowButton(wwin
->frame
, WFF_RIGHT_BUTTON
);
1793 #ifdef XKB_BUTTON_HINT
1794 wFrameWindowHideButton(wwin
->frame
, WFF_LANGUAGE_BUTTON
);
1796 wwin
->frame
->on_click_right
= destroyGNUstepPanel
;
1800 WMMapWidget(panel
->win
);
1804 gnustepPanel
= panel
;