yolobs-studio/UI/obs-app.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

238 lines
6.1 KiB
C++
Raw Normal View History

2016-02-23 23:16:51 +00:00
/******************************************************************************
Copyright (C) 2013 by Hugh Bailey <obs.jim@gmail.com>
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, see <http://www.gnu.org/licenses/>.
******************************************************************************/
#pragma once
#include <QApplication>
#include <QTranslator>
#include <QPointer>
#include <obs.hpp>
#include <util/lexer.h>
#include <util/profiler.h>
#include <util/util.hpp>
#include <util/platform.h>
2016-10-10 19:01:40 +00:00
#include <obs-frontend-api.h>
2019-07-27 12:47:10 +00:00
#include <functional>
2016-02-23 23:16:51 +00:00
#include <string>
#include <memory>
#include <vector>
2016-10-10 19:01:40 +00:00
#include <deque>
2016-02-23 23:16:51 +00:00
#include "window-main.hpp"
std::string CurrentTimeString();
std::string CurrentDateTimeString();
2019-09-22 21:19:10 +00:00
std::string GenerateTimeDateFilename(const char *extension,
bool noSpace = false);
2016-05-24 19:53:01 +00:00
std::string GenerateSpecifiedFilename(const char *extension, bool noSpace,
2019-09-22 21:19:10 +00:00
const char *format);
2020-10-01 20:15:25 +00:00
std::string GetFormatString(const char *format, const char *prefix,
const char *suffix);
std::string GetOutputFilename(const char *path, const char *ext, bool noSpace,
bool overwrite, const char *format);
2016-02-23 23:16:51 +00:00
QObject *CreateShortcutFilter();
struct BaseLexer {
lexer lex;
2019-09-22 21:19:10 +00:00
2016-02-23 23:16:51 +00:00
public:
2019-09-22 21:19:10 +00:00
inline BaseLexer() { lexer_init(&lex); }
inline ~BaseLexer() { lexer_free(&lex); }
operator lexer *() { return &lex; }
2016-02-23 23:16:51 +00:00
};
class OBSTranslator : public QTranslator {
Q_OBJECT
public:
2019-09-22 21:19:10 +00:00
virtual bool isEmpty() const override { return false; }
2016-02-23 23:16:51 +00:00
virtual QString translate(const char *context, const char *sourceText,
2019-09-22 21:19:10 +00:00
const char *disambiguation,
int n) const override;
2016-02-23 23:16:51 +00:00
};
2019-09-22 21:19:10 +00:00
typedef std::function<void()> VoidFunc;
2019-07-27 12:47:10 +00:00
2016-02-23 23:16:51 +00:00
class OBSApp : public QApplication {
Q_OBJECT
private:
2019-09-22 21:19:10 +00:00
std::string locale;
std::string theme;
ConfigFile globalConfig;
TextLookup textLookup;
QPointer<OBSMainWindow> mainWindow;
profiler_name_store_t *profilerNameStore = nullptr;
2016-02-23 23:16:51 +00:00
2020-10-01 20:15:25 +00:00
bool libobs_initialized = false;
2019-09-22 21:19:10 +00:00
os_inhibit_t *sleepInhibitor = nullptr;
int sleepInhibitRefs = 0;
2018-12-16 16:14:58 +00:00
2019-09-22 21:19:10 +00:00
bool enableHotkeysInFocus = true;
bool enableHotkeysOutOfFocus = true;
2018-12-16 16:14:58 +00:00
2016-10-10 19:01:40 +00:00
std::deque<obs_frontend_translate_ui_cb> translatorHooks;
2018-12-16 16:14:58 +00:00
bool UpdatePre22MultiviewLayout(const char *layout);
2016-02-23 23:16:51 +00:00
bool InitGlobalConfig();
bool InitGlobalConfigDefaults();
bool InitLocale();
bool InitTheme();
2018-12-16 16:14:58 +00:00
inline void ResetHotkeyState(bool inFocus);
QPalette defaultPalette;
void ParseExtraThemeData(const char *path);
2019-09-22 21:19:10 +00:00
void AddExtraThemeColor(QPalette &pal, int group, const char *name,
uint32_t color);
2018-12-16 16:14:58 +00:00
2016-02-23 23:16:51 +00:00
public:
OBSApp(int &argc, char **argv, profiler_name_store_t *store);
~OBSApp();
void AppInit();
bool OBSInit();
2019-09-22 21:19:10 +00:00
void UpdateHotkeyFocusSetting(bool reset = true);
void DisableHotkeys();
2016-02-23 23:16:51 +00:00
2019-09-22 21:19:10 +00:00
inline bool HotkeysEnabledInFocus() const
2016-02-23 23:16:51 +00:00
{
2019-09-22 21:19:10 +00:00
return enableHotkeysInFocus;
2016-02-23 23:16:51 +00:00
}
2019-09-22 21:19:10 +00:00
inline QMainWindow *GetMainWindow() const { return mainWindow.data(); }
inline config_t *GlobalConfig() const { return globalConfig; }
inline const char *GetLocale() const { return locale.c_str(); }
inline const char *GetTheme() const { return theme.c_str(); }
2016-02-23 23:16:51 +00:00
bool SetTheme(std::string name, std::string path = "");
2019-09-22 21:19:10 +00:00
inline lookup_t *GetTextLookup() const { return textLookup; }
2016-02-23 23:16:51 +00:00
inline const char *GetString(const char *lookupVal) const
{
return textLookup.GetString(lookupVal);
}
2016-10-10 19:01:40 +00:00
bool TranslateString(const char *lookupVal, const char **out) const;
2016-02-23 23:16:51 +00:00
profiler_name_store_t *GetProfilerNameStore() const
{
return profilerNameStore;
}
const char *GetLastLog() const;
const char *GetCurrentLog() const;
2018-05-29 19:13:02 +00:00
const char *GetLastCrashLog() const;
2016-02-23 23:16:51 +00:00
std::string GetVersionString() const;
2017-04-19 19:54:15 +00:00
bool IsPortableMode();
2020-10-01 20:15:25 +00:00
bool IsUpdaterDisabled();
2016-02-23 23:16:51 +00:00
const char *InputAudioSource() const;
const char *OutputAudioSource() const;
const char *GetRenderModule() const;
inline void IncrementSleepInhibition()
{
2019-09-22 21:19:10 +00:00
if (!sleepInhibitor)
return;
2016-02-23 23:16:51 +00:00
if (sleepInhibitRefs++ == 0)
os_inhibit_sleep_set_active(sleepInhibitor, true);
}
inline void DecrementSleepInhibition()
{
2019-09-22 21:19:10 +00:00
if (!sleepInhibitor)
return;
if (sleepInhibitRefs == 0)
return;
2016-02-23 23:16:51 +00:00
if (--sleepInhibitRefs == 0)
os_inhibit_sleep_set_active(sleepInhibitor, false);
}
2016-10-10 19:01:40 +00:00
inline void PushUITranslation(obs_frontend_translate_ui_cb cb)
{
translatorHooks.emplace_front(cb);
}
2019-09-22 21:19:10 +00:00
inline void PopUITranslation() { translatorHooks.pop_front(); }
2018-12-16 16:14:58 +00:00
2019-07-27 12:47:10 +00:00
public slots:
void Exec(VoidFunc func);
2018-12-16 16:14:58 +00:00
signals:
void StyleChanged();
2016-02-23 23:16:51 +00:00
};
int GetConfigPath(char *path, size_t size, const char *name);
char *GetConfigPathPtr(const char *name);
2016-08-28 12:07:43 +00:00
int GetProgramDataPath(char *path, size_t size, const char *name);
char *GetProgramDataPathPtr(const char *name);
2019-09-22 21:19:10 +00:00
inline OBSApp *App()
{
return static_cast<OBSApp *>(qApp);
}
2016-02-23 23:16:51 +00:00
2019-09-22 21:19:10 +00:00
inline config_t *GetGlobalConfig()
{
return App()->GlobalConfig();
}
2016-02-23 23:16:51 +00:00
std::vector<std::pair<std::string, std::string>> GetLocaleNames();
2019-09-22 21:19:10 +00:00
inline const char *Str(const char *lookup)
{
return App()->GetString(lookup);
}
2016-02-23 23:16:51 +00:00
#define QTStr(lookupVal) QString::fromUtf8(Str(lookupVal))
bool GetFileSafeName(const char *name, std::string &file);
bool GetClosestUnusedFileName(std::string &path, const char *extension);
2016-10-10 19:01:40 +00:00
bool WindowPositionValid(QRect rect);
2016-05-24 19:53:01 +00:00
2016-02-23 23:16:51 +00:00
static inline int GetProfilePath(char *path, size_t size, const char *file)
{
2019-09-22 21:19:10 +00:00
OBSMainWindow *window =
reinterpret_cast<OBSMainWindow *>(App()->GetMainWindow());
2016-02-23 23:16:51 +00:00
return window->GetProfilePath(path, size, file);
}
2016-05-24 19:53:01 +00:00
2017-06-29 19:01:10 +00:00
extern bool portable_mode;
2019-07-27 12:47:10 +00:00
2016-05-24 19:53:01 +00:00
extern bool opt_start_streaming;
extern bool opt_start_recording;
2017-04-19 19:54:15 +00:00
extern bool opt_start_replaybuffer;
2020-10-01 20:15:25 +00:00
extern bool opt_start_virtualcam;
2017-04-19 19:54:15 +00:00
extern bool opt_minimize_tray;
extern bool opt_studio_mode;
2017-06-29 19:01:10 +00:00
extern bool opt_allow_opengl;
extern bool opt_always_on_top;
2016-05-24 19:53:01 +00:00
extern std::string opt_starting_scene;
2020-03-25 08:07:22 +00:00
extern bool restart;