Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 602966
Collapse All | Expand All

(-)e-uae-0.8.29-WIP4/src/gui-gtk/chipsetspeedpanel.c (-2 / +2 lines)
Lines 30-38 Link Here
30
static void on_sprite_collisions_changed (GtkWidget *w, ChipsetSpeedPanel *panel);
30
static void on_sprite_collisions_changed (GtkWidget *w, ChipsetSpeedPanel *panel);
31
static void on_immediate_blits_changed (GtkWidget *w, ChipsetSpeedPanel *panel);
31
static void on_immediate_blits_changed (GtkWidget *w, ChipsetSpeedPanel *panel);
32
32
33
guint chipsetspeedpanel_get_type (void)
33
GtkType chipsetspeedpanel_get_type (void)
34
{
34
{
35
    static guint chipsetspeedpanel_type = 0;
35
    static GtkType chipsetspeedpanel_type = 0;
36
36
37
    if (!chipsetspeedpanel_type) {
37
    if (!chipsetspeedpanel_type) {
38
	static const GtkTypeInfo chipsetspeedpanel_info = {
38
	static const GtkTypeInfo chipsetspeedpanel_info = {
(-)e-uae-0.8.29-WIP4/src/gui-gtk/chipsetspeedpanel.h (-1 / +1 lines)
Lines 41-47 Link Here
41
  void (* chipsetspeedpanel) (ChipsetSpeedPanel *chipsetspeedpanel );
41
  void (* chipsetspeedpanel) (ChipsetSpeedPanel *chipsetspeedpanel );
42
};
42
};
43
43
44
guint		chipsetspeedpanel_get_type	  (void);
44
GtkType		chipsetspeedpanel_get_type	  (void);
45
GtkWidget*	chipsetspeedpanel_new		  (void);
45
GtkWidget*	chipsetspeedpanel_new		  (void);
46
46
47
void chipsetspeedpanel_set_framerate		  (ChipsetSpeedPanel *panel, guint framerate);
47
void chipsetspeedpanel_set_framerate		  (ChipsetSpeedPanel *panel, guint framerate);
(-)e-uae-0.8.29-WIP4/src/gui-gtk/chipsettypepanel.c (-2 / +2 lines)
Lines 29-37 Link Here
29
static void on_frequency_changed (GtkWidget *w, ChipsetTypePanel *panel);
29
static void on_frequency_changed (GtkWidget *w, ChipsetTypePanel *panel);
30
30
31
31
32
guint chipsettypepanel_get_type (void)
32
GtkType chipsettypepanel_get_type (void)
33
{
33
{
34
    static guint chipsettypepanel_type = 0;
34
    static GtkType chipsettypepanel_type = 0;
35
35
36
    if (!chipsettypepanel_type) {
36
    if (!chipsettypepanel_type) {
37
	static const GtkTypeInfo chipsettypepanel_info = {
37
	static const GtkTypeInfo chipsettypepanel_info = {
(-)e-uae-0.8.29-WIP4/src/gui-gtk/chipsettypepanel.h (-1 / +1 lines)
Lines 34-40 Link Here
34
  void (* chipsettypepanel) (ChipsetTypePanel *chipsettypepanel );
34
  void (* chipsettypepanel) (ChipsetTypePanel *chipsettypepanel );
35
};
35
};
36
36
37
guint		chipsettypepanel_get_type	  (void);
37
GtkType		chipsettypepanel_get_type	  (void);
38
GtkWidget*	chipsettypepanel_new		  (void);
38
GtkWidget*	chipsettypepanel_new		  (void);
39
void            chipsettypepanel_set_chipset_mask (ChipsetTypePanel *panel, guint chipset_mask);
39
void            chipsettypepanel_set_chipset_mask (ChipsetTypePanel *panel, guint chipset_mask);
40
void            chipsettypepanel_set_ntscmode     (ChipsetTypePanel *panel, guint ntscmode);   
40
void            chipsettypepanel_set_ntscmode     (ChipsetTypePanel *panel, guint ntscmode);   
(-)e-uae-0.8.29-WIP4/src/gui-gtk/chooserwidget.c (-2 / +2 lines)
Lines 20-28 Link Here
20
static guint chooser_get_choice_num (ChooserWidget *chooser);
20
static guint chooser_get_choice_num (ChooserWidget *chooser);
21
static void on_choice_changed (GtkWidget *w, ChooserWidget *chooser);
21
static void on_choice_changed (GtkWidget *w, ChooserWidget *chooser);
22
22
23
guint chooserwidget_get_type ()
23
GtkType chooserwidget_get_type ()
24
{
24
{
25
    static guint chooserwidget_type = 0;
25
    static GtkType chooserwidget_type = 0;
26
26
27
    if (!chooserwidget_type) {
27
    if (!chooserwidget_type) {
28
	static const GtkTypeInfo chooserwidget_info = {
28
	static const GtkTypeInfo chooserwidget_info = {
(-)e-uae-0.8.29-WIP4/src/gui-gtk/chooserwidget.h (-1 / +1 lines)
Lines 35-41 Link Here
35
    void (* chooserwidget) (ChooserWidget *chooserwidget);
35
    void (* chooserwidget) (ChooserWidget *chooserwidget);
36
};
36
};
37
37
38
guint		chooserwidget_get_type		(void);
38
GtkType		chooserwidget_get_type		(void);
39
GtkWidget*	chooserwidget_new		(void);
39
GtkWidget*	chooserwidget_new		(void);
40
void		chooserwidget_clear		(ChooserWidget *chooser);
40
void		chooserwidget_clear		(ChooserWidget *chooser);
41
void		chooserwidget_set_choice	(ChooserWidget *chooser, guint choice_num);
41
void		chooserwidget_set_choice	(ChooserWidget *chooser, guint choice_num);
(-)e-uae-0.8.29-WIP4/src/gui-gtk/cpuspeedpanel.c (-2 / +2 lines)
Lines 24-32 Link Here
24
static void on_idleenabled_toggled (GtkWidget *w, CpuSpeedPanel *cspanel);
24
static void on_idleenabled_toggled (GtkWidget *w, CpuSpeedPanel *cspanel);
25
static void on_idlerate_changed (GtkWidget *w, CpuSpeedPanel *cspanel);
25
static void on_idlerate_changed (GtkWidget *w, CpuSpeedPanel *cspanel);
26
26
27
guint cpuspeedpanel_get_type ()
27
GtkType cpuspeedpanel_get_type ()
28
{
28
{
29
    static guint cpuspeedpanel_type = 0;
29
    static GtkType cpuspeedpanel_type = 0;
30
30
31
    if (!cpuspeedpanel_type) {
31
    if (!cpuspeedpanel_type) {
32
	static const GtkTypeInfo cpuspeedpanel_info = {
32
	static const GtkTypeInfo cpuspeedpanel_info = {
(-)e-uae-0.8.29-WIP4/src/gui-gtk/cpuspeedpanel.h (-1 / +1 lines)
Lines 45-51 Link Here
45
    void (* cpuspeedpanel) (CpuSpeedPanel *cpuspeedpanel );
45
    void (* cpuspeedpanel) (CpuSpeedPanel *cpuspeedpanel );
46
};
46
};
47
47
48
guint		cpuspeedpanel_get_type		(void);
48
GtkType		cpuspeedpanel_get_type		(void);
49
GtkWidget*	cpuspeedpanel_new		(void);
49
GtkWidget*	cpuspeedpanel_new		(void);
50
void		cpuspeedpanel_set_cpuspeed	(CpuSpeedPanel *cspanel, gint cpuspeed);
50
void		cpuspeedpanel_set_cpuspeed	(CpuSpeedPanel *cspanel, gint cpuspeed);
51
void		cpuspeedpanel_set_cpulevel	(CpuSpeedPanel *cspanel, guint cpulevel);
51
void		cpuspeedpanel_set_cpulevel	(CpuSpeedPanel *cspanel, guint cpulevel);
(-)e-uae-0.8.29-WIP4/src/gui-gtk/cputypepanel.c (-2 / +2 lines)
Lines 24-32 Link Here
24
static void on_fpuenabled_toggled (GtkWidget *w, CpuTypePanel *ctpanel);
24
static void on_fpuenabled_toggled (GtkWidget *w, CpuTypePanel *ctpanel);
25
static void on_accuracy_changed (GtkWidget *w, CpuTypePanel *ctpanel);
25
static void on_accuracy_changed (GtkWidget *w, CpuTypePanel *ctpanel);
26
26
27
guint cputypepanel_get_type ()
27
GtkType cputypepanel_get_type ()
28
{
28
{
29
    static guint cputypepanel_type = 0;
29
    static GtkType cputypepanel_type = 0;
30
30
31
    if (!cputypepanel_type) {
31
    if (!cputypepanel_type) {
32
	static const GtkTypeInfo cputypepanel_info = {
32
	static const GtkTypeInfo cputypepanel_info = {
(-)e-uae-0.8.29-WIP4/src/gui-gtk/cputypepanel.h (-1 / +1 lines)
Lines 38-44 Link Here
38
  void (* cputypepanel) (CpuTypePanel *cputypepanel );
38
  void (* cputypepanel) (CpuTypePanel *cputypepanel );
39
};
39
};
40
40
41
guint		cputypepanel_get_type		(void);
41
GtkType		cputypepanel_get_type		(void);
42
GtkWidget*	cputypepanel_new		(void);
42
GtkWidget*	cputypepanel_new		(void);
43
void		cputypepanel_set_cpulevel	(CpuTypePanel *ctpanel, guint cpulevel);
43
void		cputypepanel_set_cpulevel	(CpuTypePanel *ctpanel, guint cpulevel);
44
void		cputypepanel_set_addr24bit	(CpuTypePanel *ctpanel, guint addr24bit);
44
void		cputypepanel_set_addr24bit	(CpuTypePanel *ctpanel, guint addr24bit);
(-)e-uae-0.8.29-WIP4/src/gui-gtk/floppyfileentry.c (-2 / +2 lines)
Lines 22-30 Link Here
22
static void on_eject (GtkWidget *w, FloppyFileEntry *ffe);
22
static void on_eject (GtkWidget *w, FloppyFileEntry *ffe);
23
static void on_insert (GtkWidget *w, FloppyFileEntry *ffe);
23
static void on_insert (GtkWidget *w, FloppyFileEntry *ffe);
24
24
25
guint floppyfileentry_get_type ()
25
GtkType floppyfileentry_get_type ()
26
{
26
{
27
    static guint floppyfileentry_type = 0;
27
    static GtkType floppyfileentry_type = 0;
28
28
29
    if (!floppyfileentry_type) {
29
    if (!floppyfileentry_type) {
30
	static const GtkTypeInfo floppyfileentry_info = {
30
	static const GtkTypeInfo floppyfileentry_info = {
(-)e-uae-0.8.29-WIP4/src/gui-gtk/floppyfileentry.h (-1 / +1 lines)
Lines 38-44 Link Here
38
  void (* floppyfileentry) (FloppyFileEntry *floppyfileentry);
38
  void (* floppyfileentry) (FloppyFileEntry *floppyfileentry);
39
};
39
};
40
40
41
guint			floppyfileentry_get_type	(void);
41
GtkType			floppyfileentry_get_type	(void);
42
GtkWidget*		floppyfileentry_new		(void);
42
GtkWidget*		floppyfileentry_new		(void);
43
void			floppyfileentry_set_currentdir	(FloppyFileEntry *ffentry, const gchar *filename);
43
void			floppyfileentry_set_currentdir	(FloppyFileEntry *ffentry, const gchar *filename);
44
void			floppyfileentry_set_filename	(FloppyFileEntry *ffentry, const gchar *filename);
44
void			floppyfileentry_set_filename	(FloppyFileEntry *ffentry, const gchar *filename);
(-)e-uae-0.8.29-WIP4/src/gui-gtk/led.c (-2 / +2 lines)
Lines 29-37 Link Here
29
static void led_size_allocate (GtkWidget *widget, GtkAllocation *allocation);
29
static void led_size_allocate (GtkWidget *widget, GtkAllocation *allocation);
30
30
31
31
32
guint led_get_type ()
32
GtkType led_get_type ()
33
{
33
{
34
    static guint led_type = 0;
34
    static GtkType led_type = 0;
35
35
36
    if (!led_type) {
36
    if (!led_type) {
37
	static const GtkTypeInfo led_info = {
37
	static const GtkTypeInfo led_info = {
(-)e-uae-0.8.29-WIP4/src/gui-gtk/led.h (-1 / +1 lines)
Lines 38-44 Link Here
38
  GtkWidgetClass parent_class;
38
  GtkWidgetClass parent_class;
39
};
39
};
40
40
41
guint			led_get_type	(void);
41
GtkType			led_get_type	(void);
42
GtkWidget*		led_new		(void);
42
GtkWidget*		led_new		(void);
43
void			led_set_off	(Led *theled);
43
void			led_set_off	(Led *theled);
44
void			led_set_color	(Led *theled, GdkColor col);
44
void			led_set_color	(Led *theled, GdkColor col);

Return to bug 602966