Line 135... |
Line 135... |
135 |
void sigResetKeyboard();
|
135 |
void sigResetKeyboard();
|
136 |
void sigShowSetup();
|
136 |
void sigShowSetup();
|
137 |
void sigPlaySound(const std::string& file);
|
137 |
void sigPlaySound(const std::string& file);
|
138 |
void sigStopSound();
|
138 |
void sigStopSound();
|
139 |
void sigMuteSound(bool state);
|
139 |
void sigMuteSound(bool state);
|
- |
|
140 |
void sigSetVolume(int volume);
|
140 |
void sigSendVirtualKeys(const std::string& str);
|
141 |
void sigSendVirtualKeys(const std::string& str);
|
141 |
void sigShowPhoneDialog(bool state);
|
142 |
void sigShowPhoneDialog(bool state);
|
142 |
void sigSetPhoneNumber(const std::string& number);
|
143 |
void sigSetPhoneNumber(const std::string& number);
|
143 |
void sigSetPhoneStatus(const std::string& msg);
|
144 |
void sigSetPhoneStatus(const std::string& msg);
|
144 |
void sigSetPhoneState(int state, int id);
|
145 |
void sigSetPhoneState(int state, int id);
|
Line 201... |
Line 202... |
201 |
void resetKeyboard();
|
202 |
void resetKeyboard();
|
202 |
void showSetup();
|
203 |
void showSetup();
|
203 |
void playSound(const std::string& file);
|
204 |
void playSound(const std::string& file);
|
204 |
void stopSound();
|
205 |
void stopSound();
|
205 |
void muteSound(bool state);
|
206 |
void muteSound(bool state);
|
- |
|
207 |
void setVolume(int volume);
|
206 |
void onAppStateChanged(Qt::ApplicationState state);
|
208 |
void onAppStateChanged(Qt::ApplicationState state);
|
207 |
void onScreenOrientationChanged(Qt::ScreenOrientation ori);
|
209 |
void onScreenOrientationChanged(Qt::ScreenOrientation ori);
|
208 |
void onCurrentOrientationChanged(int currentOrientation);
|
210 |
void onCurrentOrientationChanged(int currentOrientation);
|
209 |
#if defined(Q_OS_ANDROID) || defined(Q_OS_IOS)
|
211 |
#if defined(Q_OS_ANDROID) || defined(Q_OS_IOS)
|
210 |
void activateSettings(const std::string& oldNetlinx, int oldPort, int oldChannelID, const std::string& oldSurface, bool oldToolbarSuppress, bool oldToolbarForce);
|
212 |
void activateSettings(const std::string& oldNetlinx, int oldPort, int oldChannelID, const std::string& oldSurface, bool oldToolbarSuppress, bool oldToolbarForce);
|
Line 296... |
Line 298... |
296 |
void _resetSurface();
|
298 |
void _resetSurface();
|
297 |
void _shutdown();
|
299 |
void _shutdown();
|
298 |
void _playSound(const std::string& file);
|
300 |
void _playSound(const std::string& file);
|
299 |
void _stopSound();
|
301 |
void _stopSound();
|
300 |
void _muteSound(bool state);
|
302 |
void _muteSound(bool state);
|
- |
|
303 |
void _setVolume(int volume);
|
301 |
void _setOrientation(J_ORIENTATION ori);
|
304 |
void _setOrientation(J_ORIENTATION ori);
|
302 |
void _sendVirtualKeys(const std::string& str);
|
305 |
void _sendVirtualKeys(const std::string& str);
|
303 |
void _showPhoneDialog(bool state);
|
306 |
void _showPhoneDialog(bool state);
|
304 |
void _setPhoneNumber(const std::string& number);
|
307 |
void _setPhoneNumber(const std::string& number);
|
305 |
void _setPhoneStatus(const std::string& msg);
|
308 |
void _setPhoneStatus(const std::string& msg);
|