summaryrefslogtreecommitdiff
path: root/src/gui/char_server.cpp
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-04-08 07:06:50 -0600
committerJared Adams <jaxad0127@gmail.com>2009-04-08 07:06:50 -0600
commitf2a0fe945ac44814b271bf3fb6e9df1464d6ccc5 (patch)
tree8e0214c70393d7f74150494f5a2f30520950bc4e /src/gui/char_server.cpp
parent89f59c09fec10ff163f410960f77a9391f9e1e61 (diff)
downloadmana-client-f2a0fe945ac44814b271bf3fb6e9df1464d6ccc5.tar.gz
mana-client-f2a0fe945ac44814b271bf3fb6e9df1464d6ccc5.tar.bz2
mana-client-f2a0fe945ac44814b271bf3fb6e9df1464d6ccc5.tar.xz
mana-client-f2a0fe945ac44814b271bf3fb6e9df1464d6ccc5.zip
Make some more file build for both servers
Also some cleanup in main.cpp
Diffstat (limited to 'src/gui/char_server.cpp')
-rw-r--r--src/gui/char_server.cpp123
1 files changed, 0 insertions, 123 deletions
diff --git a/src/gui/char_server.cpp b/src/gui/char_server.cpp
deleted file mode 100644
index 48f8dedc..00000000
--- a/src/gui/char_server.cpp
+++ /dev/null
@@ -1,123 +0,0 @@
-/*
- * The Mana World
- * Copyright (C) 2004 The Mana World Development Team
- *
- * This file is part of The Mana World.
- *
- * 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
- * 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 "gui/char_server.h"
-
-#include "gui/widgets/button.h"
-#include "gui/widgets/listbox.h"
-#include "gui/widgets/scrollarea.h"
-
-#include "logindata.h"
-#include "main.h"
-#include "serverinfo.h"
-
-#include "utils/gettext.h"
-#include "utils/stringutils.h"
-
-extern SERVER_INFO **server_info;
-
-/**
- * The list model for the server list.
- */
-class ServerListModel : public gcn::ListModel
-{
- public:
- virtual ~ServerListModel() {};
-
- int getNumberOfElements();
- std::string getElementAt(int i);
-};
-
-ServerSelectDialog::ServerSelectDialog(LoginData *loginData, int nextState):
- Window(_("Select Server")),
- mLoginData(loginData),
- mNextState(nextState)
-{
- mServerListModel = new ServerListModel;
- mServerList = new ListBox(mServerListModel);
- ScrollArea *mScrollArea = new ScrollArea(mServerList);
- mOkButton = new Button(_("OK"), "ok", this);
- Button *mCancelButton = new Button(_("Cancel"), "cancel", this);
-
- setContentSize(200, 100);
-
- mCancelButton->setPosition(
- 200 - mCancelButton->getWidth() - 5,
- 100 - mCancelButton->getHeight() - 5);
- mOkButton->setPosition(
- mCancelButton->getX() - mOkButton->getWidth() - 5,
- 100 - mOkButton->getHeight() - 5);
- mScrollArea->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER);
- mScrollArea->setDimension(gcn::Rectangle(
- 5, 5, 200 - 2 * 5,
- 100 - 3 * 5 - mCancelButton->getHeight() -
- mScrollArea->getFrameSize()));
-
- mServerList->setActionEventId("ok");
-
- //mServerList->addActionListener(this);
-
- add(mScrollArea);
- add(mOkButton);
- add(mCancelButton);
-
- if (n_server == 0)
- // Disable Ok button
- mOkButton->setEnabled(false);
- else
- // Select first server
- mServerList->setSelected(1);
-
- center();
- setVisible(true);
- mOkButton->requestFocus();
-}
-
-ServerSelectDialog::~ServerSelectDialog()
-{
- delete mServerListModel;
-}
-
-void ServerSelectDialog::action(const gcn::ActionEvent &event)
-{
- if (event.getId() == "ok")
- {
- mOkButton->setEnabled(false);
- const SERVER_INFO *si = server_info[mServerList->getSelected()];
- mLoginData->hostname = ipToString(si->address);
- mLoginData->port = si->port;
- mLoginData->updateHost = si->updateHost;
- state = mNextState;
- }
- else if (event.getId() == "cancel")
- state = STATE_LOGIN;
-}
-
-int ServerListModel::getNumberOfElements()
-{
- return n_server;
-}
-
-std::string ServerListModel::getElementAt(int i)
-{
- const SERVER_INFO *si = server_info[i];
- return si->name + " (" + toString(si->online_users) + ")";
-}