nheko/src/Config.h

127 lines
3.0 KiB
C
Raw Normal View History

#pragma once
#include <QRegularExpression>
2017-12-24 12:13:07 +01:00
#include <QString>
// Non-theme app configuration. Layouts, fonts spacing etc.
//
// Font sizes are in pixels.
2017-10-15 21:08:51 +02:00
namespace conf {
// Global settings.
constexpr int fontSize = 14;
constexpr int textInputFontSize = 14;
constexpr int emojiSize = 14;
constexpr int headerFontSize = 21;
constexpr int typingNotificationFontSize = 11;
namespace popup {
constexpr int font = fontSize;
constexpr int avatar = 28;
}
namespace modals {
constexpr int errorFont = conf::fontSize - 2;
}
2018-01-03 17:05:49 +01:00
namespace receipts {
constexpr int font = 12;
2018-01-03 17:05:49 +01:00
}
2017-12-21 13:36:05 +01:00
namespace dialogs {
constexpr int labelSize = 15;
2017-12-21 13:36:05 +01:00
}
namespace modals {
constexpr int MIN_WIDGET_WIDTH = 400;
constexpr int MIN_WIDGET_HEIGHT = 400;
constexpr int WIDGET_MARGIN = 20;
constexpr int WIDGET_SPACING = 15;
constexpr int WIDGET_TOP_MARGiN = 2 * WIDGET_MARGIN;
constexpr int TEXT_SPACING = 4;
constexpr int BUTTON_SIZE = 36;
constexpr int BUTTON_RADIUS = BUTTON_SIZE / 2;
2018-09-25 13:41:47 +02:00
constexpr auto LABEL_MEDIUM_SIZE_RATIO = 1.3;
constexpr auto LABEL_BIG_SIZE_RATIO = 2;
}
2017-12-24 12:13:07 +01:00
namespace strings {
const QString url_html = "<a href=\"\\1\">\\1</a>";
const QRegularExpression url_regex(
// match an URL, that is not quoted, i.e.
2020-02-04 05:19:55 +01:00
// vvvvvv match quote via negative lookahead/lookbehind vv
// vvvv atomic match url -> fail if there is a " before or after vvv
R"((?<!")(?>((www\.(?!\.)|[a-z][a-z0-9+.-]*://)[^\s<>'"]+[^!,\.\s<>'"\]\)\:]))(?!"))");
2017-12-24 12:13:07 +01:00
}
// Window geometry.
2017-10-15 21:08:51 +02:00
namespace window {
2018-09-30 12:37:38 +02:00
constexpr int height = 600;
constexpr int width = 1066;
constexpr int minModalWidth = 340;
constexpr int minHeight = height;
constexpr int minWidth = 950;
2017-10-15 21:08:51 +02:00
} // namespace window
namespace textInput {
constexpr int height = 44;
}
2017-10-15 21:08:51 +02:00
namespace sidebarActions {
constexpr int height = textInput::height;
2018-07-20 16:44:09 +02:00
constexpr int iconSize = 24;
}
2017-10-15 21:08:51 +02:00
// Button settings.
namespace btn {
constexpr int fontSize = 20;
constexpr int cornerRadius = 3;
2017-10-15 21:08:51 +02:00
} // namespace btn
// RoomList specific.
2017-10-15 21:08:51 +02:00
namespace roomlist {
namespace fonts {
constexpr int heading = 13;
constexpr int timestamp = heading;
constexpr int badge = 10;
constexpr int bubble = 20;
constexpr int communityBubble = bubble - 4;
2017-08-20 12:47:22 +02:00
} // namespace fonts
} // namespace roomlist
2017-10-15 21:08:51 +02:00
namespace userInfoWidget {
namespace fonts {
2018-05-25 15:13:38 +02:00
constexpr int displayName = 15;
constexpr int userid = 13;
2017-08-20 12:47:22 +02:00
} // namespace fonts
} // namespace userInfoWidget
2017-10-15 21:08:51 +02:00
namespace topRoomBar {
namespace fonts {
constexpr int roomName = 15;
constexpr int roomDescription = 14;
2017-08-20 12:47:22 +02:00
} // namespace fonts
} // namespace topRoomBar
2017-10-15 21:08:51 +02:00
namespace timeline {
constexpr int msgAvatarTopMargin = 15;
constexpr int msgTopMargin = 2;
constexpr int msgLeftMargin = 14;
constexpr int avatarSize = 36;
constexpr int headerSpacing = 3;
constexpr int headerLeftMargin = 15;
2017-10-15 21:08:51 +02:00
namespace fonts {
constexpr int timestamp = 13;
constexpr int indicator = timestamp - 2;
constexpr int dateSeparator = conf::fontSize;
2017-10-15 21:08:51 +02:00
} // namespace fonts
} // namespace timeline
2017-08-20 12:47:22 +02:00
} // namespace conf