~ubuntu-branches/debian/jessie/aisleriot/jessie

« back to all changes in this revision

Viewing changes to src/window.h

  • Committer: Package Import Robot
  • Author(s): Emilio Pozuelo Monfort, Jeremy Bicha, Robert Ancell, Rico Tzschichholz, Emilio Pozuelo Monfort
  • Date: 2013-05-25 19:56:23 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130525195623-im6ppfonxjy1jarp
Tags: 1:3.8.0-1
[ Jeremy Bicha ]
* New upstream release.
* debian/control.in:
  - Build-depend on desktop-file-utils
  - Recommend yelp
  - Remove obsolete libgstreamer build-depends 

[ Robert Ancell ]
* debian/aisleriot.install:
* debian/aisleriot.menu:
* debian/patches/02_desktop-path.patch:
* debian/pixmaps/freecell.xpm:
  - Updated as freecell.desktop is removed

[ Rico Tzschichholz ]
* debian/control.in: Bump Build-Deps on libgtk-3-dev (>= 3.4.0),
  libglib2.0-dev (>= 2.32.0)

[ Emilio Pozuelo Monfort ]
* debian/watch:
  + Fixed, it wasn't tracking new versions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
typedef struct _AisleriotWindow         AisleriotWindow;
35
35
typedef struct _AisleriotWindowPrivate  AisleriotWindowPrivate;
 
36
typedef struct _AisleriotWindowClass    AisleriotWindowClass;
36
37
 
37
38
struct _AisleriotWindow {
38
 
  GtkWindow parent_instance;
 
39
  GtkApplicationWindow parent_instance;
39
40
 
40
41
  /*< private >*/
41
42
  AisleriotWindowPrivate *priv;
42
43
};
43
44
 
44
 
typedef GtkWindowClass AisleriotWindowClass;
 
45
struct _AisleriotWindowClass {
 
46
  GtkApplicationWindowClass base_class;
 
47
};
45
48
 
46
49
GType aisleriot_window_get_type (void);
47
50
 
48
 
GtkWidget *aisleriot_window_new (gboolean freecell_mode);
 
51
GtkWidget *aisleriot_window_new (GtkApplication *application);
 
52
 
 
53
GtkUIManager *aisleriot_window_get_ui_manager (AisleriotWindow *window);
 
54
 
 
55
GtkAction *aisleriot_window_get_action (AisleriotWindow *window,
 
56
                                        const char *action_name);
49
57
 
50
58
void aisleriot_window_set_game_module (AisleriotWindow * window,
51
59
                                       const char *game_module,
53
61
 
54
62
const char *aisleriot_window_get_game_module (AisleriotWindow *window);
55
63
 
 
64
void aisleriot_window_new_game (AisleriotWindow * window);
 
65
void aisleriot_window_change_game (AisleriotWindow * window);
 
66
void aisleriot_window_show_statistics_dialog (AisleriotWindow * window);
 
67
void aisleriot_window_show_about_dialog (AisleriotWindow * window);
 
68
 
 
69
 
56
70
G_END_DECLS
57
71
 
58
72
#endif /* !AISLERIOT_WINDOW_H */