From 1baa188067bba53044d63e945cd4ed441dad6ed0 Mon Sep 17 00:00:00 2001 From: Max-Wilhelm Bruker Date: Thu, 12 Nov 2009 17:32:20 +0100 Subject: [PATCH] more --- cockatrice/cockatrice.pro | 6 ++++++ cockatrice/src/tab_chatchannel.cpp | 1 + cockatrice/src/tab_chatchannel.h | 1 + cockatrice/src/tab_game.cpp | 1 + cockatrice/src/tab_game.h | 1 + cockatrice/src/tab_server.cpp | 6 ++++++ cockatrice/src/tab_server.h | 13 +++++++++++++ 7 files changed, 29 insertions(+) create mode 100644 cockatrice/src/tab_chatchannel.cpp create mode 100644 cockatrice/src/tab_chatchannel.h create mode 100644 cockatrice/src/tab_game.cpp create mode 100644 cockatrice/src/tab_game.h create mode 100644 cockatrice/src/tab_server.cpp create mode 100644 cockatrice/src/tab_server.h diff --git a/cockatrice/cockatrice.pro b/cockatrice/cockatrice.pro index 87e52d12..4d5158e9 100644 --- a/cockatrice/cockatrice.pro +++ b/cockatrice/cockatrice.pro @@ -43,6 +43,9 @@ HEADERS += src/counter.h \ src/chatwidget.h \ src/gamescene.h \ src/arrowitem.h \ + src/tab_server.h \ + src/tab_chatchannel.h \ + src/tab_game.h \ ../common/protocol.h \ ../common/protocol_items.h \ ../common/protocol_datastructures.h @@ -84,6 +87,9 @@ SOURCES += src/counter.cpp \ src/chatwidget.cpp \ src/gamescene.cpp \ src/arrowitem.cpp \ + src/tab_server.cpp \ + src/tab_chatchannel.cpp \ + src/tab_game.cpp \ ../common/protocol.cpp \ ../common/protocol_items.cpp diff --git a/cockatrice/src/tab_chatchannel.cpp b/cockatrice/src/tab_chatchannel.cpp new file mode 100644 index 00000000..8d1c8b69 --- /dev/null +++ b/cockatrice/src/tab_chatchannel.cpp @@ -0,0 +1 @@ + diff --git a/cockatrice/src/tab_chatchannel.h b/cockatrice/src/tab_chatchannel.h new file mode 100644 index 00000000..8d1c8b69 --- /dev/null +++ b/cockatrice/src/tab_chatchannel.h @@ -0,0 +1 @@ + diff --git a/cockatrice/src/tab_game.cpp b/cockatrice/src/tab_game.cpp new file mode 100644 index 00000000..8d1c8b69 --- /dev/null +++ b/cockatrice/src/tab_game.cpp @@ -0,0 +1 @@ + diff --git a/cockatrice/src/tab_game.h b/cockatrice/src/tab_game.h new file mode 100644 index 00000000..8d1c8b69 --- /dev/null +++ b/cockatrice/src/tab_game.h @@ -0,0 +1 @@ + diff --git a/cockatrice/src/tab_server.cpp b/cockatrice/src/tab_server.cpp new file mode 100644 index 00000000..a84b62a6 --- /dev/null +++ b/cockatrice/src/tab_server.cpp @@ -0,0 +1,6 @@ +#include "tab_server.h" + +TabServer::TabServer(QWidget *parent) + : QWidget(parent) +{ +} diff --git a/cockatrice/src/tab_server.h b/cockatrice/src/tab_server.h new file mode 100644 index 00000000..02fa4f50 --- /dev/null +++ b/cockatrice/src/tab_server.h @@ -0,0 +1,13 @@ +#ifndef TAB_SERVER_H +#define TAB_SERVER_H + +#include + +class TabServer : public QWidget { + Q_OBJECT +private: +public: + TabServer(QWidget *parent = 0); +}; + +#endif