CoreGTK  2.24.0
CoreGTK is an Objective-C language binding for the GTK+ widget toolkit
 All Classes Functions Variables
CGTKAboutDialog.h
1 /*
2  * CGTKAboutDialog.h
3  * This file is part of CoreGTK
4  *
5  * Copyright (C) 2014 - Tyler Burton
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library 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 GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 /*
23  * Modified by the CoreGTK Team, 2014. See the AUTHORS file for a
24  * list of people on the CoreGTK Team.
25  * See the ChangeLog files for a list of changes.
26  *
27  */
28 
29 /*
30  * Objective-C imports
31  */
32 #import "CGTKDialog.h"
33 
35 {
36 
37 }
38 
39 /*
40  * Creates and returns a new instance of CGTKAboutDialog holding the GtkAboutDialog.
41  */
42 -(id)init;
43 
44 /*
45  * Gets the internal GtkAboutDialog widget
46  */
47 -(GtkAboutDialog *)ABOUT_DIALOG;
48 
49 /*
50  * Forwards message to:
51  * void gtk_about_dialog_set_program_name (GtkAboutDialog* about,const gchar* name)
52  */
53 -(void)setProgramName:(NSString *)name;
54 
55 /*
56  * Forwards message to:
57  * void gtk_about_dialog_set_version (GtkAboutDialog* about,const gchar* version)
58  */
59 -(void)setVersion:(NSString *)version;
60 
61 /*
62  * Forwards message to:
63  * const gchar* gtk_about_dialog_get_version (GtkAboutDialog* about);
64  */
65 -(NSString *)getVersion;
66 
67 /*
68  * Forwards message to:
69  * void gtk_about_dialog_set_copyright (GtkAboutDialog* about,const gchar* copyright)
70  */
71 -(void)setCopyright:(NSString *)copyright;
72 
73 /*
74  * Forwards message to:
75  * const gchar* gtk_about_dialog_get_copyright(GtkAboutDialog* about);
76  */
77 -(NSString *)getCopyright;
78 
79 /*
80  * Forwards message to:
81  * void gtk_about_dialog_set_comments (GtkAboutDialog* about,const gchar* comments)
82  */
83 -(void)setComments:(NSString *)comments;
84 
85 /*
86  * Forwards message to:
87  * const gchar* gtk_about_dialog_get_comments (GtkAboutDialog *about);
88  */
89 -(NSString *)getComments;
90 
91 /*
92  * Forwards message to:
93  * void gtk_about_dialog_set_license (GtkAboutDialog* about,const gchar* license)
94  */
95 -(void)setLicense:(NSString *)license;
96 
97 /*
98  * Forwards message to:
99  * const gchar* gtk_about_dialog_get_license (GtkAboutDialog *about);
100  */
101  -(NSString *)getLicense;
102 
103 /*
104  * Forwards message to:
105  * gboolean gtk_about_dialog_get_wrap_license (GtkAboutDialog* about)
106  */
107 -(BOOL)getWrapLicense;
108 
109 /*
110  * Forwards message to:
111  * void gtk_about_dialog_set_wrap_license (GtkAboutDialog* about, gboolean wrap_license)
112  */
113 -(void)setWrapLicense:(BOOL)wrapLicense;
114 
115 /*
116  * Forwards message to:
117  * void gtk_about_dialog_set_website (GtkAboutDialog* about,const gchar* website)
118  */
119 -(void)setWebsite:(NSString *)website;
120 
121 /*
122  * Forwards message to:
123  * gboolean gtk_about_dialog_get_website (GtkAboutDialog* about)
124  */
125 -(NSString *)getWebsite;
126 
127 /*
128  * Forwards message to:
129  * void gtk_about_dialog_set_website_label (GtkAboutDialog* about,const gchar* website_label)
130  */
131 -(void)setWebsiteLabel:(NSString *)websiteLabel;
132 
133 /*
134  * Forwards message to:
135  * const gchar* gtk_about_dialog_get_website_label (GtkAboutDialog* about)
136  */
137 -(NSString *)getWebsiteLabel;
138 
139 /*
140  * Forwards message to:
141  * void gtk_about_dialog_set_authors (GtkAboutDialog* about,const gchar** authors)
142  */
143 -(void)setAuthors:(NSArray *)authors;
144 
145 /*
146  * Forwards message to:
147  * const gchar * const * gtk_about_dialog_get_authors (GtkAboutDialog* about);
148  */
149 -(NSArray *)getAuthors;
150 
151 /*
152  * Forwards message to:
153  * void gtk_about_dialog_set_documenters (GtkAboutDialog* about,const gchar** documenters)
154  */
155 -(void)setDocumenters:(NSArray *)documenters;
156 
157 /*
158  * Forwards message to:
159  * const gchar * const * gtk_about_dialog_get_documenters (GtkAboutDialog *about);
160  */
161 -(NSArray *)getDocumenters;
162 
163 /*
164  * Forwards message to:
165  * void gtk_about_dialog_set_artists (GtkAboutDialog* about,const gchar** artists)
166  */
167 -(void)setArtists:(NSArray *)artists;
168 
169 /*
170  * Forwards message to:
171  * const gchar* gtk_about_dialog_get_artists (GtkAboutDialog* about)
172  */
173 -(NSArray *)getArtists;
174 
175 /*
176  * Forwards message to:
177  * void gtk_about_dialog_set_translator_credits (GtkAboutDialog* about,const gchar* translator_credits)
178  */
179 -(void)setTranslatorCredits:(NSString *)translatorCredits;
180 
181 /*
182  * Forwards message to:
183  * const gchar* gtk_about_dialog_get_translator_credits (GtkAboutDialog* about)
184  */
185 -(NSString *)getTranslatorCredits;
186 
187 /*
188  * Forwards message to:
189  * GdkPixbuf* gtk_about_dialog_get_logo (GtkAboutDialog* about)
190  */
191 -(GdkPixbuf *)getLogo;
192 
193 /*
194  * Forwards message to:
195  * void gtk_about_dialog_set_logo (GtkAboutDialog* about,GdkPixbuf* logo)
196  */
197 -(void)setLogo:(GdkPixbuf *)logo;
198 
199 /*
200  * Forwards message to:
201  * void gtk_about_dialog_set_logo_icon_name (GtkAboutDialog* about,const gchar* icon_name)
202  */
203 -(void)setLogoIconName:(NSString *)iconName;
204 
205 /*
206  * Forwards message to:
207  * const gchar* gtk_about_dialog_get_logo_icon_name (GtkAboutDialog* about)
208  */
209 -(NSString *)getLogoIconName;
210 
211 /*
212  * Forwards message to:
213  * const gchar* gtk_about_dialog_get_program_name (GtkAboutDialog* about)
214  */
215 -(NSString *)getProgramName;
216 
217 @end
Definition: CGTKDialog.h:34
Definition: CGTKAboutDialog.h:34