~ubuntu-branches/ubuntu/natty/xfce4-weather-plugin/natty-proposed

« back to all changes in this revision

Viewing changes to panel-plugin/config_dialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Yves-Alexis Perez, Simon Huggins, Yves-Alexis Perez
  • Date: 2007-12-08 19:28:17 UTC
  • mfrom: (0.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071208192817-xjr2u2eshv19ndp5
Tags: 0.6.2-1
[ Simon Huggins ]
* debian/control: Move fake Homepage field to a real one now dpkg
  supports it.
* Add Vcs-* headers to debian/control

[ Yves-Alexis Perez ]
* New upstream release.
* debian/control:
  - updated standard versions to 3.7.3.
  - updated my email to the debian.org one.
* debian/copyright: updated copyrights, authors and license.
* debian/NEWS: remove tab at beginning of lines. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* vim: set expandtab ts=8 sw=4: */
2
 
 
3
 
/*  This program is free software; you can redistribute it and/or modify
4
 
 *  it under the terms of the GNU General Public License as published by
5
 
 *  the Free Software Foundation; either version 2 of the License, or
6
 
 *  (at your option) any later version.
7
 
 *
8
 
 *  This program is distributed in the hope that it will be useful,
9
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
 *  GNU Library General Public License for more details.
12
 
 *
13
 
 *  You should have received a copy of the GNU General Public License
14
 
 *  along with this program; if not, write to the Free Software
15
 
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
 
 */
17
 
 
18
 
#ifndef CONFIG_DIALOG_H
19
 
#define CONFIG_DIALOG_H
20
 
 
21
 
G_BEGIN_DECLS
22
 
 
23
 
typedef struct {
24
 
        gchar           *name;
25
 
        datas            number;
26
 
}
27
 
labeloption;
28
 
 
29
 
typedef struct {
30
 
        GtkWidget        *dialog;
31
 
        GtkWidget        *opt_unit;
32
 
        GtkWidget        *txt_loc_code;
33
 
        GtkWidget        *txt_proxy_host;
34
 
        GtkWidget        *txt_proxy_port;
35
 
        GtkWidget        *chk_proxy_use;
36
 
        GtkWidget        *chk_proxy_fromenv;
37
 
 
38
 
        GtkWidget        *tooltip_yes;
39
 
        GtkWidget        *tooltip_no;
40
 
 
41
 
        GtkWidget        *opt_xmloption;
42
 
        GtkWidget        *lst_xmloption;
43
 
        GtkListStore     *mdl_xmloption;
44
 
 
45
 
        xfceweather_data *wd;
46
 
}
47
 
xfceweather_dialog;
48
 
 
49
 
xfceweather_dialog *
50
 
create_config_dialog       (xfceweather_data *data, GtkWidget *vbox);
51
 
 
52
 
void
53
 
set_callback_config_dialog (xfceweather_dialog *dialog, void(cb)(xfceweather_data *));
54
 
 
55
 
void
56
 
apply_options              (xfceweather_dialog *dialog);
57
 
 
58
 
G_END_DECLS
59
 
 
60
 
#endif