mirror of https://github.com/procxx/kepka.git
Add parent, minimum and maximum size to notifications
This commit is contained in:
parent
bdf28370f9
commit
3479a4ec59
|
@ -431,13 +431,17 @@ NotificationsCount::~NotificationsCount() {
|
||||||
NotificationsCount::SampleWidget::SampleWidget(
|
NotificationsCount::SampleWidget::SampleWidget(
|
||||||
NotificationsCount *owner,
|
NotificationsCount *owner,
|
||||||
const QPixmap &cache)
|
const QPixmap &cache)
|
||||||
: QWidget(nullptr)
|
: QWidget(App::wnd())
|
||||||
, _owner(owner)
|
, _owner(owner)
|
||||||
, _cache(cache) {
|
, _cache(cache) {
|
||||||
resize(
|
const QSize size(
|
||||||
cache.width() / cache.devicePixelRatio(),
|
cache.width() / cache.devicePixelRatio(),
|
||||||
cache.height() / cache.devicePixelRatio());
|
cache.height() / cache.devicePixelRatio());
|
||||||
|
|
||||||
|
resize(size);
|
||||||
|
setMinimumSize(size);
|
||||||
|
setMaximumSize(size);
|
||||||
|
|
||||||
setWindowFlags(Qt::WindowFlags(Qt::FramelessWindowHint)
|
setWindowFlags(Qt::WindowFlags(Qt::FramelessWindowHint)
|
||||||
| Qt::WindowStaysOnTopHint
|
| Qt::WindowStaysOnTopHint
|
||||||
| Qt::BypassWindowManagerHint
|
| Qt::BypassWindowManagerHint
|
||||||
|
|
|
@ -27,6 +27,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "base/call_delayed.h"
|
#include "base/call_delayed.h"
|
||||||
#include "facades.h"
|
#include "facades.h"
|
||||||
#include "app.h"
|
#include "app.h"
|
||||||
|
#include "mainwindow.h"
|
||||||
#include "styles/style_dialogs.h"
|
#include "styles/style_dialogs.h"
|
||||||
#include "styles/style_layers.h"
|
#include "styles/style_layers.h"
|
||||||
#include "styles/style_window.h"
|
#include "styles/style_window.h"
|
||||||
|
@ -374,7 +375,7 @@ Widget::Widget(
|
||||||
QPoint startPosition,
|
QPoint startPosition,
|
||||||
int shift,
|
int shift,
|
||||||
Direction shiftDirection)
|
Direction shiftDirection)
|
||||||
: TWidget(nullptr)
|
: TWidget(App::wnd())
|
||||||
, _manager(manager)
|
, _manager(manager)
|
||||||
, _startPosition(startPosition)
|
, _startPosition(startPosition)
|
||||||
, _direction(shiftDirection)
|
, _direction(shiftDirection)
|
||||||
|
@ -488,6 +489,8 @@ void Widget::addToHeight(int add) {
|
||||||
|
|
||||||
void Widget::updateGeometry(int x, int y, int width, int height) {
|
void Widget::updateGeometry(int x, int y, int width, int height) {
|
||||||
setGeometry(x, y, width, height);
|
setGeometry(x, y, width, height);
|
||||||
|
setMinimumSize(QSize(width, height));
|
||||||
|
setMaximumSize(QSize(width, height));
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue