~ubuntu-branches/ubuntu/trusty/gq/trusty

« back to all changes in this revision

Viewing changes to src/gq-login-dialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese
  • Date: 2009-10-25 23:34:56 UTC
  • mfrom: (1.1.4 upstream) (3.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091025233456-i794n3yg2cff930j
Tags: 1.3.4-1
* QA upload.
  + Set maintainer to Debian QA Group <packages@qa.debian.org>.
* New upstream release. (Closes: #534705).
  + Does not segfault on amd64. (Closes: #444312).
  + Remove all existing patches and change patch system to quilt.
  + Replace dpatch build-dep with quilt.
* 01_desktop_file.diff - Remove encoding and bogus categories 
  from desktop file.
* Copy in config.{sub,guess} on configure, rm them on clean.
  + Add build-dep on autotools-dev.
* Make clean not ignore errors.
* Add copyright holders and version path to GPL (GPL-2).
* Update watch file to use SF redirector. (Closes: #449749).
* Bump debhelper build-dep and compat to 5.
* Bump Standards Version to 3.8.3.
  + Menu policy transition.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of GQ
 
2
 *
 
3
 * AUTHORS
 
4
 *     Sven Herzberg  <herzi@gnome-de.org>
 
5
 *
 
6
 * Copyright (C) 2006  Sven Herzberg <herzi@gnome-de.org>
 
7
 *
 
8
 * This program is free software; you can redistribute it and/or
 
9
 * modify it under the terms of the GNU Lesser General Public License as
 
10
 * published by the Free Software Foundation; either version 2.1 of the
 
11
 * License, or (at your option) any later version.
 
12
 *
 
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 Lesser General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU Lesser 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
 
21
 * USA
 
22
 */
 
23
 
 
24
#ifndef GQ_LOGIN_DIALOG_H
 
25
#define GQ_LOGIN_DIALOG_H
 
26
 
 
27
#include "gq-server.h"
 
28
#include "herzi-glade-dialog.h"
 
29
 
 
30
G_BEGIN_DECLS
 
31
 
 
32
typedef HerziGladeDialog      GqLoginDialog;
 
33
typedef HerziGladeDialogClass GqLoginDialogClass;
 
34
 
 
35
#define GQ_TYPE_LOGIN_DIALOG         (gq_login_dialog_get_type())
 
36
#define GQ_LOGIN_DIALOG(i)           (G_TYPE_CHECK_INSTANCE_CAST((i), GQ_TYPE_LOGIN_DIALOG, GqLoginDialog))
 
37
#define GQ_LOGIN_DIALOG_CLASS(c)     (G_TYPE_CHECK_CLASS_CAST((c), GQ_TYPE_LOGIN_DIALOG, GqLoginDialogClass))
 
38
#define GQ_IS_LOGIN_DIALOG(i)        (G_TYPE_CHECK_INSTANCE_TYPE((i), GQ_TYPE_LOGIN_DIALOG))
 
39
#define GQ_IS_LOGIN_DIALOG_CLASS(c)  (G_TYPE_CHECK_CLASS_TYPE((c), GQ_TYPE_LOGIN_DIALOG))
 
40
#define GQ_LOGIN_DIALOG_GET_CLASS(i) (G_TYPE_INSTANCE_GET_CLASS((i), GQ_TYPE_LOGIN_DIALOG, GqLoginDialogClass))
 
41
 
 
42
GType        gq_login_dialog_get_type         (void);
 
43
GtkWidget  * gq_login_dialog_new              (GqServer* server);
 
44
gchar const* gq_login_dialog_get_password     (GqLoginDialog const* self);
 
45
gboolean     gq_login_dialog_get_save_password(GqLoginDialog const* self);
 
46
 
 
47
G_END_DECLS
 
48
 
 
49
#endif /* !GQ_LOGIN_DIALOG_H */