mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 19:36:11 +00:00
26 lines
408 B
C
26 lines
408 B
C
|
#ifndef CUTTER_LAYOUT_H
|
||
|
#define CUTTER_LAYOUT_H
|
||
|
|
||
|
#include <QByteArray>
|
||
|
#include <QMap>
|
||
|
#include <QString>
|
||
|
#include <QVariantMap>
|
||
|
|
||
|
namespace Cutter
|
||
|
{
|
||
|
|
||
|
struct CutterLayout
|
||
|
{
|
||
|
QByteArray geometry;
|
||
|
QByteArray state;
|
||
|
QMap<QString, QVariantMap> viewProperties;
|
||
|
};
|
||
|
|
||
|
const QString LAYOUT_DEFAULT = "Default";
|
||
|
const QString LAYOUT_DEBUG = "Debug";
|
||
|
|
||
|
bool isBuiltinLayoutName(const QString &name);
|
||
|
|
||
|
}
|
||
|
#endif
|