mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-05 15:30:00 +01:00
Discarding use of ZENITY under linux (previously used with the tinyfiledialog) because snapcraft makes it impossible to use :(. Reimplementation of GTK+ dialogs directly inside vimix code. Note: no changes for OSX. Complete cleanup of cmake file.
25 lines
397 B
C++
25 lines
397 B
C++
#ifndef DIALOGTOOLKIT_H
|
|
#define DIALOGTOOLKIT_H
|
|
|
|
#include <string>
|
|
|
|
|
|
namespace DialogToolkit
|
|
{
|
|
|
|
std::string saveSessionFileDialog(const std::string &path);
|
|
|
|
std::string openSessionFileDialog(const std::string &path);
|
|
|
|
std::string ImportFileDialog(const std::string &path);
|
|
|
|
std::string FolderDialog(const std::string &path);
|
|
|
|
void ErrorDialog(const char* message);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // DIALOGTOOLKIT_H
|