1 | /* |
---|
2 | orxonox - the future of 3D-vertical-scrollers |
---|
3 | |
---|
4 | Copyright (C) 2004 orx |
---|
5 | |
---|
6 | This program is free software; you can redistribute it and/or modify |
---|
7 | it under the terms of the GNU General Public License as published by |
---|
8 | the Free Software Foundation; either version 2, or (at your option) |
---|
9 | any later version. |
---|
10 | |
---|
11 | This program is distributed in the hope that it will be useful, |
---|
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
14 | GNU General Public License for more details. |
---|
15 | |
---|
16 | You should have received a copy of the GNU General Public License |
---|
17 | along with this program; if not, write to the Free Software Foundation, |
---|
18 | Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
---|
19 | |
---|
20 | |
---|
21 | ### File Specific: |
---|
22 | main-programmer: Benjamin Grauer |
---|
23 | |
---|
24 | */ |
---|
25 | |
---|
26 | #include "orxonox_gui_keys.h" |
---|
27 | #include <iostream.h> |
---|
28 | |
---|
29 | /** |
---|
30 | \brief Creates an Keyboard-Frame |
---|
31 | */ |
---|
32 | OrxonoxGuiKeys::OrxonoxGuiKeys () |
---|
33 | { |
---|
34 | keysFrame = new Frame ("Keyboard-Options:"); |
---|
35 | keysFrame->setGroupName("Keyboard"); |
---|
36 | keysBox = new Box ('v'); |
---|
37 | player1 = new Player("player1"); |
---|
38 | player2 = new Player("player2"); |
---|
39 | |
---|
40 | keysBox->fill(player1->getOpenButton()); |
---|
41 | |
---|
42 | keysFrame->fill (keysBox); |
---|
43 | } |
---|
44 | |
---|
45 | /** |
---|
46 | \brief Return the Frame |
---|
47 | \return Returns the Audio-frame |
---|
48 | */ |
---|
49 | Widget* OrxonoxGuiKeys::getWidget () |
---|
50 | { |
---|
51 | return keysFrame; |
---|
52 | } |
---|
53 | |
---|
54 | |
---|
55 | |
---|
56 | /* PLAYER */ |
---|
57 | Player::Player(char* player) |
---|
58 | { |
---|
59 | openButton = new Button (player); |
---|
60 | } |
---|
61 | |
---|
62 | Button* Player::getOpenButton() |
---|
63 | { |
---|
64 | return openButton; |
---|
65 | } |
---|
66 | |
---|
67 | |
---|
68 | void Player::setkey(KEYS key) |
---|
69 | { |
---|
70 | cout << "setting up Key: "<< key <<endl; |
---|
71 | } |
---|
72 | |
---|
73 | gint WindowOpen (GtkWidget* widget, GdkEvent* event, void* player) |
---|
74 | { |
---|
75 | |
---|
76 | } |
---|
77 | |
---|