summaryrefslogtreecommitdiff
path: root/src/tools/servomatic_gui.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-04-26 22:25:09 +0100
committerCarl Hetherington <cth@carlh.net>2013-04-26 22:25:09 +0100
commit0194092f7f2b4a6ceb3e69c470fae8c92bdca077 (patch)
tree4334e29a553d33b4c6999ad3b399b29d7cf85ad3 /src/tools/servomatic_gui.cc
parent2f43c704eca4d7954b08edc82bb2706967f62e96 (diff)
Rename server and makedcp (temporarily?) so that it is parallel installable with dvd-o-matic.
Diffstat (limited to 'src/tools/servomatic_gui.cc')
-rw-r--r--src/tools/servomatic_gui.cc174
1 files changed, 0 insertions, 174 deletions
diff --git a/src/tools/servomatic_gui.cc b/src/tools/servomatic_gui.cc
deleted file mode 100644
index 152e063c1..000000000
--- a/src/tools/servomatic_gui.cc
+++ /dev/null
@@ -1,174 +0,0 @@
-/*
- Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
-
- 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
- (at your option) 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., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-*/
-
-#include <boost/thread.hpp>
-#include <wx/taskbar.h>
-#include <wx/icon.h>
-#include "wx_util.h"
-#include "lib/util.h"
-#include "lib/server.h"
-#include "lib/config.h"
-
-using std::cout;
-using std::string;
-using boost::shared_ptr;
-using boost::thread;
-using boost::bind;
-
-enum {
- ID_status = 1,
- ID_quit,
- ID_timer
-};
-
-class MemoryLog : public Log
-{
-public:
-
- string get () const {
- boost::mutex::scoped_lock (_mutex);
- return _log;
- }
-
-private:
- void do_log (string m)
- {
- _log = m;
- }
-
- string _log;
-};
-
-static shared_ptr<MemoryLog> memory_log (new MemoryLog);
-
-class StatusDialog : public wxDialog
-{
-public:
- StatusDialog ()
- : wxDialog (0, wxID_ANY, _("DCP-o-matic encode server"), wxDefaultPosition, wxSize (600, 80), wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
- , _timer (this, ID_timer)
- {
- _sizer = new wxFlexGridSizer (1, 6, 6);
- _sizer->AddGrowableCol (0, 1);
-
- _text = new wxTextCtrl (this, wxID_ANY, _(""), wxDefaultPosition, wxDefaultSize, wxTE_READONLY);
- _sizer->Add (_text, 1, wxEXPAND);
-
- SetSizer (_sizer);
- _sizer->Layout ();
-
- Connect (ID_timer, wxEVT_TIMER, wxTimerEventHandler (StatusDialog::update));
- _timer.Start (1000);
- }
-
-private:
- void update (wxTimerEvent &)
- {
- _text->ChangeValue (std_to_wx (memory_log->get ()));
- _sizer->Layout ();
- }
-
- wxFlexGridSizer* _sizer;
- wxTextCtrl* _text;
- wxTimer _timer;
-};
-
-class TaskBarIcon : public wxTaskBarIcon
-{
-public:
- TaskBarIcon ()
- {
-#ifdef __WXMSW__
- wxIcon icon (std_to_wx ("taskbar_icon"));
-#endif
-#ifdef __WXGTK__
- wxInitAllImageHandlers();
- wxBitmap bitmap (wxString::Format (wxT ("%s/taskbar_icon.png"), POSIX_ICON_PREFIX), wxBITMAP_TYPE_PNG);
- wxIcon icon;
- icon.CopyFromBitmap (bitmap);
-#endif
- SetIcon (icon, std_to_wx ("DCP-o-matic encode server"));
-
- Connect (ID_status, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler (TaskBarIcon::status));
- Connect (ID_quit, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler (TaskBarIcon::quit));
- }
-
- wxMenu* CreatePopupMenu ()
- {
- wxMenu* menu = new wxMenu;
- menu->Append (ID_status, std_to_wx ("Status..."));
- menu->Append (ID_quit, std_to_wx ("Quit"));
- return menu;
- }
-
-private:
- void status (wxCommandEvent &)
- {
- StatusDialog* d = new StatusDialog;
- d->Show ();
- }
-
- void quit (wxCommandEvent &)
- {
- wxTheApp->ExitMainLoop ();
- }
-};
-
-class App : public wxApp
-{
-public:
- App ()
- : wxApp ()
- , _thread (0)
- , _icon (0)
- {}
-
-private:
-
- bool OnInit ()
- {
- if (!wxApp::OnInit ()) {
- return false;
- }
-
- dcpomatic_setup ();
-
- _icon = new TaskBarIcon;
- _thread = new thread (bind (&App::main_thread, this));
-
- return true;
- }
-
- int OnExit ()
- {
- delete _icon;
- return wxApp::OnExit ();
- }
-
- void main_thread ()
- {
- Server server (memory_log);
- server.run (Config::instance()->num_local_encoding_threads ());
- }
-
- boost::thread* _thread;
- TaskBarIcon* _icon;
-};
-
-IMPLEMENT_APP (App)