2017-07-15 17:11:46 +03:00
|
|
|
#pragma once
|
|
|
|
|
2017-12-24 14:13:07 +03:00
|
|
|
#include <QRegExp>
|
|
|
|
#include <QString>
|
|
|
|
|
2017-07-15 17:11:46 +03:00
|
|
|
// Non-theme app configuration. Layouts, fonts spacing etc.
|
|
|
|
//
|
|
|
|
// Font sizes are in pixels.
|
|
|
|
|
2017-10-15 22:08:51 +03:00
|
|
|
namespace conf {
|
2018-07-04 00:05:05 +03:00
|
|
|
constexpr int sideBarCollapsePoint = 450;
|
2017-07-15 17:11:46 +03:00
|
|
|
// Global settings.
|
2018-05-16 20:40:42 +03:00
|
|
|
constexpr int fontSize = 14;
|
|
|
|
constexpr int textInputFontSize = 14;
|
|
|
|
constexpr int emojiSize = 14;
|
|
|
|
constexpr int headerFontSize = 21;
|
|
|
|
constexpr int typingNotificationFontSize = 11;
|
2017-07-15 17:11:46 +03:00
|
|
|
|
2018-03-25 00:16:15 +03:00
|
|
|
namespace popup {
|
2018-05-16 20:40:42 +03:00
|
|
|
constexpr int font = fontSize;
|
|
|
|
constexpr int avatar = 28;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace modals {
|
|
|
|
constexpr int errorFont = conf::fontSize - 2;
|
2018-03-25 00:16:15 +03:00
|
|
|
}
|
|
|
|
|
2018-01-03 19:05:49 +03:00
|
|
|
namespace receipts {
|
2018-05-16 20:40:42 +03:00
|
|
|
constexpr int font = 12;
|
2018-01-03 19:05:49 +03:00
|
|
|
}
|
|
|
|
|
2017-12-21 15:36:05 +03:00
|
|
|
namespace dialogs {
|
2018-05-16 20:40:42 +03:00
|
|
|
constexpr int labelSize = 15;
|
2017-12-21 15:36:05 +03:00
|
|
|
}
|
|
|
|
|
2017-12-24 14:13:07 +03:00
|
|
|
namespace strings {
|
2018-05-16 20:40:42 +03:00
|
|
|
const QString url_html = "<a href=\"\\1\">\\1</a>";
|
|
|
|
const QRegExp url_regex(
|
2017-12-24 14:13:07 +03:00
|
|
|
"((www\\.(?!\\.)|[a-z][a-z0-9+.-]*://)[^\\s<>'\"]+[^!,\\.\\s<>'\"\\]\\)\\:])");
|
|
|
|
}
|
|
|
|
|
2017-07-30 13:59:28 +03:00
|
|
|
// Window geometry.
|
2017-10-15 22:08:51 +03:00
|
|
|
namespace window {
|
2018-05-16 20:40:42 +03:00
|
|
|
constexpr int height = 600;
|
|
|
|
constexpr int width = 1066;
|
2017-07-30 13:59:28 +03:00
|
|
|
|
2018-05-16 20:40:42 +03:00
|
|
|
constexpr int minHeight = height;
|
|
|
|
constexpr int minWidth = 950;
|
2017-10-15 22:08:51 +03:00
|
|
|
} // namespace window
|
|
|
|
|
|
|
|
namespace textInput {
|
2018-05-16 20:40:42 +03:00
|
|
|
constexpr int height = 50;
|
2017-07-30 13:59:28 +03:00
|
|
|
}
|
|
|
|
|
2017-10-15 22:08:51 +03:00
|
|
|
namespace sidebarActions {
|
2018-05-16 20:40:42 +03:00
|
|
|
constexpr int height = textInput::height;
|
|
|
|
constexpr int iconSize = 28;
|
2017-07-15 17:11:46 +03:00
|
|
|
}
|
|
|
|
|
2017-10-15 22:08:51 +03:00
|
|
|
// Button settings.
|
|
|
|
namespace btn {
|
2018-05-16 20:40:42 +03:00
|
|
|
constexpr int fontSize = 20;
|
|
|
|
constexpr int cornerRadius = 3;
|
2017-10-15 22:08:51 +03:00
|
|
|
} // namespace btn
|
|
|
|
|
2017-07-15 17:11:46 +03:00
|
|
|
// RoomList specific.
|
2017-10-15 22:08:51 +03:00
|
|
|
namespace roomlist {
|
|
|
|
namespace fonts {
|
2018-05-16 20:40:42 +03:00
|
|
|
constexpr int heading = 13;
|
|
|
|
constexpr int timestamp = heading;
|
|
|
|
constexpr int badge = 10;
|
|
|
|
constexpr int bubble = 20;
|
|
|
|
constexpr int communityBubble = bubble - 4;
|
2017-08-20 13:47:22 +03:00
|
|
|
} // namespace fonts
|
|
|
|
} // namespace roomlist
|
2017-07-15 17:11:46 +03:00
|
|
|
|
2017-10-15 22:08:51 +03:00
|
|
|
namespace userInfoWidget {
|
|
|
|
namespace fonts {
|
2018-05-25 16:13:38 +03:00
|
|
|
constexpr int displayName = 15;
|
|
|
|
constexpr int userid = 13;
|
2017-08-20 13:47:22 +03:00
|
|
|
} // namespace fonts
|
|
|
|
} // namespace userInfoWidget
|
2017-07-15 17:11:46 +03:00
|
|
|
|
2017-10-15 22:08:51 +03:00
|
|
|
namespace topRoomBar {
|
|
|
|
namespace fonts {
|
2018-05-16 20:40:42 +03:00
|
|
|
constexpr int roomName = 15;
|
|
|
|
constexpr int roomDescription = 14;
|
2017-08-20 13:47:22 +03:00
|
|
|
} // namespace fonts
|
|
|
|
} // namespace topRoomBar
|
2017-07-15 17:11:46 +03:00
|
|
|
|
2017-10-15 22:08:51 +03:00
|
|
|
namespace timeline {
|
2018-05-16 20:40:42 +03:00
|
|
|
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-07-15 17:11:46 +03:00
|
|
|
|
2017-10-15 22:08:51 +03:00
|
|
|
namespace fonts {
|
2018-05-16 20:40:42 +03:00
|
|
|
constexpr int timestamp = 13;
|
2018-07-01 19:40:53 +03:00
|
|
|
constexpr int indicator = timestamp - 2;
|
2018-05-16 20:40:42 +03:00
|
|
|
constexpr int dateSeparator = conf::fontSize;
|
2017-10-15 22:08:51 +03:00
|
|
|
} // namespace fonts
|
|
|
|
} // namespace timeline
|
2017-07-15 17:11:46 +03:00
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
} // namespace conf
|