aboutsummaryrefslogtreecommitdiff
path: root/src/WebViewData.hpp
blob: 6831d29d7059ecd297dd9e4395528d2f9c1f5dc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include <QtCore>

using WebViewId = qsizetype;

enum OpenType : uint8_t {
  OpenUrl,
  OpenUrlInView,
  OpenUrlInBgView,
  OpenUrlInWindow,
};

struct WebViewData {
  WebViewId id;
  QString url;
  QString title;
};