forked from Ivasoft/DSView
77 lines
1.6 KiB
C++
77 lines
1.6 KiB
C++
/*
|
|
* This file is part of the DSView project.
|
|
* DSView is based on PulseView.
|
|
*
|
|
* Copyright (C) 2021 DreamSourceLab <support@dreamsourcelab.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, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
struct sr_context;
|
|
class QWidget;
|
|
|
|
namespace pv{
|
|
class SigSession;
|
|
}
|
|
|
|
class AppControl
|
|
{
|
|
private:
|
|
explicit AppControl();
|
|
~AppControl();
|
|
AppControl(AppControl &o);
|
|
|
|
public:
|
|
static AppControl* Instance();
|
|
|
|
void Destroy();
|
|
|
|
bool Init();
|
|
|
|
bool Start();
|
|
|
|
void Stop();
|
|
|
|
void UnInit();
|
|
|
|
const char* GetLastError();
|
|
|
|
inline pv::SigSession* GetSession(){
|
|
return _session;
|
|
}
|
|
|
|
inline void SetTopWindow(QWidget *w){
|
|
_topWindow = w;
|
|
}
|
|
|
|
inline QWidget* GetTopWindow(){
|
|
return _topWindow;
|
|
}
|
|
|
|
bool TopWindowIsMaximized();
|
|
|
|
public:
|
|
std::string _open_file_name;
|
|
|
|
private:
|
|
std::string m_error;
|
|
pv::SigSession *_session;
|
|
QWidget *_topWindow;
|
|
};
|