File: LauncherView.h

package info (click to toggle)
csmash 0.6.6-6.6
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 14,180 kB
  • ctags: 1,757
  • sloc: cpp: 19,535; sh: 3,426; makefile: 440; ansic: 120; sed: 16
file content (94 lines) | stat: -rw-r--r-- 2,679 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* $Id: LauncherView.h,v 1.3 2003/07/19 18:33:31 nan Exp $ */

// Copyright (C) 2001  神南 吉宏(Kanna Yoshihiro)
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

#include <gtk/gtk.h>

// Upper half of initial window
class LauncherHeader {
public:
  LauncherHeader();
  ~LauncherHeader();

  void Init( GtkBox *box );

protected:
  GtkWidget * FullScreenFrame();
  GtkWidget * SoundFrame();
  GtkWidget * GraphicsFrame();

  static void Toggle( GtkWidget *widget, gpointer data );
  static void ToggleFullScreen( GtkWidget *widget, gpointer data );
  static void ToggleSound( GtkWidget *widget, gpointer data );

#ifdef ENABLE_IPV6
  GtkWidget * ProtocolFrame();
  static void ToggleProtocol( GtkWidget *widget, gpointer data );
#endif
};


// Lower half of initial window
class ModeNote {
public:
  ModeNote();
  ~ModeNote();

  void Init( GtkBox *box );

  GtkWidget *m_serverName;
  GtkWidget *m_lobbyEdit[2];
protected:
  GtkWidget * InitSoloPlayPanel();
  GtkWidget * InitLANPlayPanel();
  GtkWidget * InitInternetPlayPanel();

  static void Toggle( GtkWidget *widget, gpointer data );
  static void StartGame( GtkWidget *widget, gpointer data );
  static void LANStartGame( GtkWidget *widget, gpointer data );
  static void InternetStartGame( GtkWidget *widget, gpointer data );

#ifdef WIN32
  static LRESULT CALLBACK EditWindowProc( HWND hwnd, UINT msg,
					  WPARAM wparam, LPARAM lparam);
  static LRESULT CALLBACK ParentWindowProc(HWND hwnd,UINT msg,WPARAM wparam,LPARAM lparam);
  static LONG pEditWndProc;
  static LONG pParentWndProc;
  static HWND pChildHWnd;
#endif
};

class LauncherView {
public:
  LauncherView();
  ~LauncherView();

  void Init();

  static void Destroy(GtkWidget *widget, gpointer data);
  static void ConnectionFailedDialog();

#ifdef WIN32
  static HWND hWnd;
#endif
protected:
  GtkWidget *m_window;		// main window
  LauncherHeader *m_header;	// upper area
  ModeNote *m_note;		// mode notebook(solo, LAN, Internet)

  GtkWidget *m_quit;		// quit button
};