mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-10 21:55:11 +01:00
8085fee39c
Solved issues # 20, 21,23, 25, 29. Added the possibility to show a smaller screen (so also the borders are shown), the preferences are saved manually and not automatically on exit, when a gameshot is saved also some preferences (key bindings, game name, 1541 emulation, screen dimension) related to the game are saved.
33 lines
482 B
C++
33 lines
482 B
C++
#ifndef NETWORK_USER_MENU_HH
|
|
#define NETWORK_USER_MENU_HH
|
|
|
|
#include <SDL.h>
|
|
#include "../Network.h"
|
|
|
|
class GuiView;
|
|
class NetworkUserMenu;
|
|
class PeerInfoBox;
|
|
|
|
class NetworkUserView : public GuiView
|
|
{
|
|
public:
|
|
NetworkUserView();
|
|
|
|
~NetworkUserView();
|
|
|
|
void runLogic();
|
|
|
|
void pushEvent(event_t ev);
|
|
|
|
void setPeers(NetworkUpdateListPeers *peerList);
|
|
|
|
void draw(SDL_Surface *where);
|
|
|
|
protected:
|
|
NetworkUserMenu *menu;
|
|
PeerInfoBox *peerInfo;
|
|
};
|
|
|
|
#endif /* NETWORK_USER_MENU_HH */
|
|
|