2 Copyright 2004-2020 Chris Tallon
4 This file is part of VOMP.
6 VOMP is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 VOMP is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with VOMP. If not, see <https://www.gnu.org/licenses/>.
27 #include "messagequeue.h"
48 typedef std::vector<struct ASLPref> ASLPrefList;
50 class Control : public MessageQueue
55 static Control* getInstance();
57 bool init(bool crashed = false);
62 void connectionLost();
64 void setAdvMenus(bool adv) { advMenus = adv; };
65 bool isAdvMenus() { return advMenus; };
66 int getLangPref(bool subtitle,const char* langcode);
67 void setSubDefault(int subon) { subdefault = subon; };
68 int getSubDefault() { return subdefault; };
69 ASLPrefList &getASLList() { return langcodes; };
75 Sleeptimer* sleeptimer{};
80 void handleCommand(int);
84 void doJustConnected(VConnect* vconnect);
86 void doFromTheTop(bool which); // true - show vinfo,wait. false - del vinfo,restart
87 void buildCrashedBox();
89 void clearMQInputEvents();
91 static Control* instance;
101 WJpeg* wallpaper_pict{};
106 ASLPrefList langcodes;
109 void processMessage(Message* m);