2010-09-25 17:46:12 +02:00
|
|
|
#ifndef __GTK_NETPLAY_DIALOG_H
|
|
|
|
#define __GTK_NETPLAY_DIALOG_H
|
|
|
|
|
2010-09-26 11:19:15 +02:00
|
|
|
#include "gtk_builder_window.h"
|
2010-09-25 17:46:12 +02:00
|
|
|
#include "gtk_config.h"
|
|
|
|
|
2010-09-26 11:19:15 +02:00
|
|
|
class Snes9xNetplayDialog : public GtkBuilderWindow
|
2010-09-25 17:46:12 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
Snes9xNetplayDialog (Snes9xConfig *config);
|
|
|
|
~Snes9xNetplayDialog (void);
|
|
|
|
int show (void);
|
|
|
|
void update_state (void);
|
2010-09-26 11:19:15 +02:00
|
|
|
|
2010-09-25 17:46:12 +02:00
|
|
|
private:
|
|
|
|
Snes9xConfig *config;
|
|
|
|
void settings_to_dialog (void);
|
|
|
|
void settings_from_dialog (void);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GTK_NETPLAY_DIALOG_H */
|