CoreGTK  2.24.0
CoreGTK is an Objective-C language binding for the GTK+ widget toolkit
 All Classes Functions Variables
CGTKAssistant.h
1 /*
2  * CGTKAssistant.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 "CGTKWindow.h"
33 
35 {
36 
37 }
38 
39 -(GtkAssistant *)ASSISTANT;
40 
41 /*
42  * Forwards message to:
43  * GtkWidget* gtk_assistant_new (void)
44  */
45 -(id)init;
46 
47 /*
48  * Forwards message to:
49  * gint gtk_assistant_get_current_page (GtkAssistant* assistant)
50  */
51 -(NSNumber *)getCurrentPage;
52 
53 /*
54  * Forwards message to:
55  * void gtk_assistant_set_current_page (GtkAssistant* assistant, gint page_num)
56  */
57 -(void)setCurrentPage:(NSNumber *)pageNum;
58 
59 /*
60  * Forwards message to:
61  * gint gtk_assistant_get_n_pages (GtkAssistant* assistant)
62  */
63 -(NSNumber *)getNPages;
64 
65 /*
66  * Forwards message to:
67  * GtkWidget* gtk_assistant_get_nth_page (GtkAssistant* assistant, gint page_num)
68  */
69 -(CGTKWidget *)getNthPage:(NSNumber *)pageNum;
70 
71 /*
72  * Forwards message to:
73  * gint gtk_assistant_prepend_page (GtkAssistant* assistant, GtkWidget* page)
74  */
75 -(NSNumber *)prependPage:(CGTKWidget *)page;
76 
77 /*
78  * Forwards message to:
79  * gint gtk_assistant_append_page (GtkAssistant* assistant, GtkWidget* page)
80  */
81 -(NSNumber *)appendPage:(CGTKWidget *)page;
82 
83 /*
84  * Forwards message to:
85  * gint gtk_assistant_insert_page (GtkAssistant* assistant, GtkWidget* page, gint position)
86  */
87 -(NSNumber *)insertPageWithPage:(CGTKWidget *)page andPosition:(NSNumber *)position;
88 
89 /*
90  * Forwards message to:
91  * void gtk_assistant_set_forward_page_func (GtkAssistant* assistant, GtkAssistantPageFunc page_func, gpointer data, GDestroyNotify destroy)
92  */
93 -(void)setForwardPageFuncWithPageFunc:(GtkAssistantPageFunc)pageFunc andData:(gpointer)data andDestroy:(GDestroyNotify)destroy;
94 
95 /*
96  * Forwards message to:
97  * void gtk_assistant_set_page_type (GtkAssistant* assistant, GtkWidget* page, GtkAssistantPageType type)
98  */
99 -(void)setPageTypeWithPage:(CGTKWidget *)page andType:(GtkAssistantPageType)type;
100 
101 /*
102  * Forwards message to:
103  * GtkAssistantPageType gtk_assistant_get_page_type (GtkAssistant* assistant, GtkWidget* page)
104  */
105 -(GtkAssistantPageType)getPageType:(CGTKWidget *)page;
106 
107 /*
108  * Forwards message to:
109  * void gtk_assistant_set_page_title (GtkAssistant* assistant, GtkWidget* page, const gchar* title)
110  */
111 -(void)setPageTitleWithPage:(CGTKWidget *)page andTitle:(NSString *)title;
112 
113 /*
114  * Forwards message to:
115  * const gchar * gtk_assistant_get_page_title (GtkAssistant* assistant, GtkWidget* page)
116  */
117 -(NSString *)getPageTitleWithPage:(CGTKWidget *)page;
118 
119 /*
120  * Forwards message to:
121  * void gtk_assistant_set_page_header_image (GtkAssistant* assistant, GtkWidget* page, GdkPixbuf* pixbuf)
122  */
123 -(void)setPageHeaderImageWithPage:(CGTKWidget *)page andPixbuf:(GdkPixbuf *)pixbuf;
124 
125 /*
126  * Forwards message to:
127  * GdkPixbuf* gtk_assistant_get_page_header_image (GtkAssistant* assistant, GtkWidget* page)
128  */
129 -(GdkPixbuf *)getPageHeaderImage:(CGTKWidget *)page;
130 
131 /*
132  * Forwards message to:
133  * void gtk_assistant_set_page_side_image (GtkAssistant* assistant, GtkWidget* page, GdkPixbuf* pixbuf)
134  */
135 -(void)setPageSideImageWithPage:(CGTKWidget *)page andPixbuf:(GdkPixbuf *)pixbuf;
136 
137 /*
138  * Forwards message to:
139  * GdkPixbuf* gtk_assistant_get_page_side_image (GtkAssistant* assistant, GtkWidget* page)
140  */
141 -(GdkPixbuf *)getPageSideImage:(CGTKWidget *)page;
142 
143 /*
144  * Forwards message to:
145  * void gtk_assistant_set_page_complete (GtkAssistant* assistant, GtkWidget* page, gboolean complete)
146  */
147 -(void)setPageCompleteWithPage:(CGTKWidget *)page andComplete:(BOOL)complete;
148 
149 /*
150  * Forwards message to:
151  * gboolean gtk_assistant_get_page_complete (GtkAssistant* assistant, GtkWidget* page)
152  */
153 -(BOOL)getPageComplete:(CGTKWidget *)page;
154 
155 /*
156  * Forwards message to:
157  * void gtk_assistant_add_action_widget (GtkAssistant* assistant, GtkWidget* child)
158  */
159 -(void)addActionWidget:(CGTKWidget *)child;
160 
161 /*
162  * Forwards message to:
163  * void gtk_assistant_remove_action_widget (GtkAssistant* assistant, GtkWidget* child)
164  */
165 -(void)removeActionWidget:(CGTKWidget *)child;
166 
167 /*
168  * Forwards message to:
169  * void gtk_assistant_update_buttons_state (GtkAssistant* assistant)
170  */
171 -(void)updateButtonsState;
172 
173 /*
174  * Forwards message to:
175  * void gtk_assistant_commit (GtkAssistant* assistant)
176  */
177 -(void)commit;
178 
179 @end
Definition: CGTKAssistant.h:34
Definition: CGTKWindow.h:34
Definition: CGTKWidget.h:50