55 lines
1.1 KiB
C
55 lines
1.1 KiB
C
|
/*
|
||
|
* Copyright 2009-2010, Andrea Anzani. All rights reserved.
|
||
|
* Copyright 2009-2010, Pier Luigi Fiorini. All rights reserved.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _MAIN_WINDOW_H
|
||
|
#define _MAIN_WINDOW_H
|
||
|
|
||
|
#include <Window.h>
|
||
|
|
||
|
#include "Observer.h"
|
||
|
|
||
|
class BCardLayout;
|
||
|
class BTextControl;
|
||
|
|
||
|
class Server;
|
||
|
class StatusView;
|
||
|
class RosterListView;
|
||
|
class RosterItem;
|
||
|
|
||
|
#define OPEN_WINDOW 'opwn'
|
||
|
#define CLOSE_WINDOW 'clwn'
|
||
|
|
||
|
class MainWindow: public BWindow, public Observer {
|
||
|
public:
|
||
|
MainWindow();
|
||
|
|
||
|
virtual void MessageReceived(BMessage* message);
|
||
|
void ImMessage(BMessage* msg);
|
||
|
void ImError(BMessage* msg);
|
||
|
virtual bool QuitRequested();
|
||
|
|
||
|
void ObserveInteger(int32 what, int32 val);
|
||
|
|
||
|
Server* GetServer() const { return fSrv; }
|
||
|
|
||
|
void UpdateListItem(RosterItem* item);
|
||
|
|
||
|
int32 CountItems() const;
|
||
|
RosterItem* ItemAt(int index);
|
||
|
void AddItem(RosterItem*);
|
||
|
bool HasItem(RosterItem*);
|
||
|
void RemoveItem(RosterItem*);
|
||
|
|
||
|
private:
|
||
|
StatusView* fStatusView;
|
||
|
RosterListView* fListView;
|
||
|
BCardLayout* fStack;
|
||
|
BTextControl* fUsername;
|
||
|
BTextControl* fPassword;
|
||
|
Server* fSrv;
|
||
|
};
|
||
|
|
||
|
#endif // _MAIN_WINDOW_H
|