mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 23:57:10 -04:00
cf705954a1
The change also includes a new MultiSettings feature that allows settings keys common to all configurations. The splash screen disable is the first of those to be used. The MultiSettings class has been made safer to use by ensuring it saves and re-enables the current QSettings group when doing multi settings actions. This allows access to common, across configuration, items while within a normal settings group without breaking the MultiSettings internal implementation. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7073 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
25 lines
304 B
C++
25 lines
304 B
C++
#ifndef SPLASH_SCREEN_HPP___
|
|
#define SPLASH_SCREEN_HPP___
|
|
|
|
#include <QSplashScreen>
|
|
|
|
#include "pimpl_h.hpp"
|
|
|
|
class SplashScreen final
|
|
: public QSplashScreen
|
|
{
|
|
Q_OBJECT;
|
|
|
|
public:
|
|
SplashScreen ();
|
|
~SplashScreen ();
|
|
|
|
Q_SIGNAL void disabled ();
|
|
|
|
private:
|
|
class impl;
|
|
pimpl<impl> m_;
|
|
};
|
|
|
|
#endif
|