1 /* Themes.c- Theme stuff
3 * WPrefs - Window Maker Preferences Program
5 * Copyright (c) 1998 Alfredo K. Kojima
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
28 typedef struct _Panel
{
33 CallbackRec callbacks
;
56 #define ICON_FILE "theme"
60 showData(_Panel
*panel
)
67 finishedTileDownload(void *data
)
69 _Panel
*panel
= (_Panel
*)data
;
71 WMSetButtonText(panel
->totB
, _("Set"));
78 finishedBarDownload(void *data
)
80 _Panel
*panel
= (_Panel
*)data
;
82 WMSetButtonText(panel
->botB
, _("Set"));
88 downloadFile(WMScreen
*scr
, _Panel
*panel
, char *file
)
94 wsyserror("could not fork() process");
96 WMRunAlertPanel(scr
, GetWindow(panel
), _("Error"),
97 "Could not start download. fork() failed",
105 close(ConnectionNumber(WMScreenDisplay(scr
)));
114 downloadCallback(WMWidget
*w
, void *data
)
116 _Panel
*panel
= (_Panel
*)data
;
118 WMButton
*button
= (WMButton
*)w
;
121 if (button
== panel
->totB
) {
122 pid
= &panel
->tilePID
;
124 pid
= &panel
->barPID
;
128 newPid
= downloadFile(WMWidgetScreen(w
), panel
, NULL
);
132 WMSetButtonText(button
, _("Stop"));
134 if (button
== panel
->totB
) {
135 AddDeadChildHandler(newPid
, finishedTileDownload
, data
);
137 AddDeadChildHandler(newPid
, finishedBarDownload
, data
);
143 WMSetButtonText(button
, _("Download"));
150 updateThemeList(_Panel
*panel
)
152 WMClearList(panel
->list
);
161 createPanel(Panel
*p
)
163 _Panel
*panel
= (_Panel
*)p
;
165 panel
->box
= WMCreateBox(panel
->parent
);
166 WMSetViewExpandsToParent(WMWidgetView(panel
->box
), 2, 2, 2, 2);
168 panel
->saveB
= WMCreateCommandButton(panel
->box
);
169 WMResizeWidget(panel
->saveB
, 154, 24);
170 WMMoveWidget(panel
->saveB
, 15, 10);
171 WMSetButtonText(panel
->saveB
, _("Save Current Theme"));
173 panel
->list
= WMCreateList(panel
->box
);
174 WMResizeWidget(panel
->list
, 154, 150);
175 WMMoveWidget(panel
->list
, 15, 40);
177 panel
->loadB
= WMCreateCommandButton(panel
->box
);
178 WMResizeWidget(panel
->loadB
, 74, 24);
179 WMMoveWidget(panel
->loadB
, 15, 200);
180 WMSetButtonText(panel
->loadB
, _("Load"));
182 panel
->instB
= WMCreateCommandButton(panel
->box
);
183 WMResizeWidget(panel
->instB
, 74, 24);
184 WMMoveWidget(panel
->instB
, 95, 200);
185 WMSetButtonText(panel
->instB
, _("Install"));
188 /**************** Tile of the day ****************/
190 panel
->totF
= WMCreateFrame(panel
->box
);
191 WMResizeWidget(panel
->totF
, 210, 105);
192 WMMoveWidget(panel
->totF
, 240, 10);
193 WMSetFrameTitle(panel
->totF
, _("Tile of The Day"));
195 panel
->totL
= WMCreateLabel(panel
->totF
);
196 WMResizeWidget(panel
->totL
, 67, 67);
197 WMMoveWidget(panel
->totL
, 25, 25);
198 WMSetLabelRelief(panel
->totL
, WRSunken
);
200 panel
->totB
= WMCreateCommandButton(panel
->totF
);
201 WMResizeWidget(panel
->totB
, 86, 24);
202 WMMoveWidget(panel
->totB
, 105, 45);
203 WMSetButtonText(panel
->totB
, _("Download"));
204 WMSetButtonAction(panel
->totB
, downloadCallback
, panel
);
206 WMMapSubwidgets(panel
->totF
);
208 /**************** Bar of the day ****************/
210 panel
->botF
= WMCreateFrame(panel
->box
);
211 WMResizeWidget(panel
->botF
, 315, 95);
212 WMMoveWidget(panel
->botF
, 190, 125);
213 WMSetFrameTitle(panel
->botF
, _("Bar of The Day"));
215 panel
->botL
= WMCreateLabel(panel
->botF
);
216 WMResizeWidget(panel
->botL
, 285, 32);
217 WMMoveWidget(panel
->botL
, 15, 20);
218 WMSetLabelRelief(panel
->botL
, WRSunken
);
220 panel
->botB
= WMCreateCommandButton(panel
->botF
);
221 WMResizeWidget(panel
->botB
, 86, 24);
222 WMMoveWidget(panel
->botB
, 110, 60);
223 WMSetButtonText(panel
->botB
, _("Download"));
224 WMSetButtonAction(panel
->botB
, downloadCallback
, panel
);
226 WMMapSubwidgets(panel
->botF
);
228 WMRealizeWidget(panel
->box
);
229 WMMapSubwidgets(panel
->box
);
236 storeData(_Panel
*panel
)
243 InitThemes(WMScreen
*scr
, WMWidget
*parent
)
247 panel
= wmalloc(sizeof(_Panel
));
248 memset(panel
, 0, sizeof(_Panel
));
250 panel
->sectionName
= _("Themes");
252 panel
->parent
= parent
;
254 panel
->callbacks
.createWidgets
= createPanel
;
255 panel
->callbacks
.updateDomain
= storeData
;
257 AddSection(panel
, ICON_FILE
);