~ubuntu-branches/ubuntu/wily/mupen64plus/wily

« back to all changes in this revision

Viewing changes to main/gui_gtk/configdialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Sven Eckelmann
  • Date: 2011-07-24 14:23:26 UTC
  • mfrom: (10.1.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20110724142326-x9z5qu8j9jecrmod
Tags: 1.99.4+2
* Upload to unstable
* Remove overrides for lintian warning about change to native package
* Update Vcs-* fields to new anonscm.debian.org URLs in debian/control
* Fix spelling of "Flexible" in debian/control (Closes: #633693)
* Mark all targets in debian/rules as phony
* Add some information about the mupen64plus 2.0 vision in debian/NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2
 
 *   Mupen64plus - configdialog.c                                          *
3
 
 *   Mupen64Plus homepage: http://code.google.com/p/mupen64plus/           *
4
 
 *   Copyright (C) 2008 Tillin9                                            *
5
 
 *   Copyright (C) 2002 Blight                                             *
6
 
 *                                                                         *
7
 
 *   This program is free software; you can redistribute it and/or modify  *
8
 
 *   it under the terms of the GNU General Public License as published by  *
9
 
 *   the Free Software Foundation; either version 2 of the License, or     *
10
 
 *   (at your option) any later version.                                   *
11
 
 *                                                                         *
12
 
 *   This program 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         *
15
 
 *   GNU General Public License for more details.                          *
16
 
 *                                                                         *
17
 
 *   You should have received a copy of the GNU General Public License     *
18
 
 *   along with this program; if not, write to the                         *
19
 
 *   Free Software Foundation, Inc.,                                       *
20
 
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.          *
21
 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
22
 
 
23
 
/* configdialog.h - Handles the configuration dialog */
24
 
 
25
 
#ifndef __CONFIGDIALOG_H__
26
 
#define __CONFIGDIALOG_H__
27
 
 
28
 
#include <gtk/gtk.h>
29
 
 
30
 
typedef struct
31
 
{
32
 
    GtkWidget* dialog;
33
 
 
34
 
    GtkWidget* notebook;
35
 
    GtkWidget* configMupen;
36
 
    GtkWidget* configPlugins;
37
 
    GtkWidget* configRomBrowser;
38
 
    GtkWidget* configInputMappings;
39
 
 
40
 
    GtkWidget* coreInterpreterCheckButton;
41
 
    GtkWidget* coreDynaRecCheckButton;
42
 
    GtkWidget* corePureInterpCheckButton;
43
 
    GtkWidget* autoincSaveSlotCheckButton;
44
 
    GtkWidget* noaskCheckButton;
45
 
    GtkWidget* osdEnabled;
46
 
    GtkWidget* alwaysFullscreen;
47
 
    GList* toolbarStyleGList;
48
 
    GtkWidget* toolbarStyleCombo;
49
 
    GList* toolbarSizeGList;
50
 
    GtkWidget* toolbarSizeCombo;
51
 
 
52
 
    GtkWidget* graphicsCombo;
53
 
    GtkWidget* audioCombo;
54
 
    GtkWidget* inputCombo;
55
 
    GtkWidget* rspCombo;
56
 
    GList* graphicsPluginGList;
57
 
    GList* audioPluginGList;
58
 
    GList* inputPluginGList;
59
 
    GList* rspPluginGList;
60
 
    GtkWidget* romDirectoryList;
61
 
    GtkWidget* romDirsScanRecCheckButton;
62
 
    GtkWidget* romShowFullPathsCheckButton;
63
 
    GtkWidget* noCompiledJumpCheckButton;
64
 
    GtkWidget* noMemoryExpansion;
65
 
 
66
 
    GtkWidget* graphicsImage;
67
 
    GtkWidget* audioImage;
68
 
    GtkWidget* inputImage;
69
 
    GtkWidget* rspImage;
70
 
 
71
 
    GtkWidget* okButton;
72
 
} SConfigDialog;
73
 
 
74
 
extern SConfigDialog g_ConfigDialog;
75
 
 
76
 
void create_configDialog(void);
77
 
void show_configure();
78
 
 
79
 
#endif /* __CONFIGDIALOG_H__ */
80