mirror of https://github.com/snes9xgit/snes9x.git
28 lines
818 B
C++
28 lines
818 B
C++
/*****************************************************************************\
|
|
Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
|
|
This file is licensed under the Snes9x License.
|
|
For further information, consult the LICENSE file in the root directory.
|
|
\*****************************************************************************/
|
|
|
|
#ifndef __GTK_NETPLAY_DIALOG_H
|
|
#define __GTK_NETPLAY_DIALOG_H
|
|
|
|
#include "gtk_builder_window.h"
|
|
#include "gtk_config.h"
|
|
|
|
class Snes9xNetplayDialog : public GtkBuilderWindow
|
|
{
|
|
public:
|
|
Snes9xNetplayDialog(Snes9xConfig *config);
|
|
~Snes9xNetplayDialog();
|
|
bool show();
|
|
void update_state();
|
|
|
|
private:
|
|
Snes9xConfig *config;
|
|
void settings_to_dialog();
|
|
void settings_from_dialog();
|
|
};
|
|
|
|
#endif /* __GTK_NETPLAY_DIALOG_H */
|