tdesktop/Telegram/SourceFiles/overviewwidget.h

347 lines
9.0 KiB
C
Raw Normal View History

2014-08-15 11:19:32 +00:00
/*
This file is part of Telegram Desktop,
the official desktop version of Telegram messaging app, see https://telegram.org
2014-08-15 11:19:32 +00:00
Telegram Desktop is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
It is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2015-10-03 13:16:42 +00:00
In addition, as a special exception, the copyright holders give permission
to link the code of portions of this program with the OpenSSL library.
2014-08-15 11:19:32 +00:00
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
2015-10-03 13:16:42 +00:00
Copyright (c) 2014-2015 John Preston, https://desktop.telegram.org
2014-08-15 11:19:32 +00:00
*/
#pragma once
class OverviewWidget;
2014-08-20 05:32:50 +00:00
class OverviewInner : public QWidget, public RPCSender {
2014-08-15 11:19:32 +00:00
Q_OBJECT
public:
OverviewInner(OverviewWidget *overview, ScrollArea *scroll, PeerData *peer, MediaOverviewType type);
2014-08-15 11:19:32 +00:00
void activate();
2014-08-15 11:19:32 +00:00
void clear();
int32 itemTop(const FullMsgId &msgId) const;
2014-08-15 11:19:32 +00:00
bool preloadLocal();
void preloadMore();
2014-08-15 11:19:32 +00:00
bool event(QEvent *e);
2014-08-20 05:32:50 +00:00
void touchEvent(QTouchEvent *e);
2014-08-15 11:19:32 +00:00
void paintEvent(QPaintEvent *e);
void mouseMoveEvent(QMouseEvent *e);
void mousePressEvent(QMouseEvent *e);
void mouseReleaseEvent(QMouseEvent *e);
void keyPressEvent(QKeyEvent *e);
void enterEvent(QEvent *e);
void leaveEvent(QEvent *e);
void resizeEvent(QResizeEvent *e);
2014-08-20 05:32:50 +00:00
void showContextMenu(QContextMenuEvent *e, bool showFromTouch = false);
void dragActionStart(const QPoint &screenPos, Qt::MouseButton button = Qt::LeftButton);
void dragActionUpdate(const QPoint &screenPos);
void dragActionFinish(const QPoint &screenPos, Qt::MouseButton button = Qt::LeftButton);
void dragActionCancel();
void touchScrollUpdated(const QPoint &screenPos);
QPoint mapMouseToItem(QPoint p, MsgId itemId, int32 itemIndex);
2014-08-15 11:19:32 +00:00
int32 resizeToWidth(int32 nwidth, int32 scrollTop, int32 minHeight, bool force = false); // returns new scroll top
2014-08-15 11:19:32 +00:00
void dropResizeIndex();
PeerData *peer() const;
PeerData *migratePeer() const;
2014-08-15 11:19:32 +00:00
MediaOverviewType type() const;
void switchType(MediaOverviewType type);
void setSelectMode(bool enabled);
void mediaOverviewUpdated();
void changingMsgId(HistoryItem *row, MsgId newId);
2015-12-27 21:37:48 +00:00
void repaintItem(const HistoryItem *msg);
void itemRemoved(HistoryItem *item);
2014-08-20 05:32:50 +00:00
void getSelectionState(int32 &selectedForForward, int32 &selectedForDelete) const;
void clearSelectedItems(bool onlyTextSelection = false);
void fillSelectedItems(SelectedItemSet &sel, bool forDelete = true);
2014-08-15 11:19:32 +00:00
~OverviewInner();
public slots:
2014-08-20 05:32:50 +00:00
void onUpdateSelected();
void showLinkTip();
2014-08-15 11:19:32 +00:00
void openContextUrl();
void copyContextUrl();
2014-08-15 11:19:32 +00:00
void cancelContextDownload();
void showContextInFolder();
void saveContextFile();
void openContextFile();
void goToMessage();
void deleteMessage();
void forwardMessage();
void selectMessage();
2014-08-15 11:19:32 +00:00
void onSearchUpdate();
void onCancel();
bool onCancelSearch();
2014-08-15 11:19:32 +00:00
void onMenuDestroy(QObject *obj);
2014-08-20 05:32:50 +00:00
void onTouchSelect();
void onTouchScrollTimer();
2014-08-15 11:19:32 +00:00
void onDragExec();
bool onSearchMessages(bool searchCache = false);
void onNeedSearchMessages();
2014-08-15 11:19:32 +00:00
private:
2015-12-20 14:05:07 +00:00
MsgId complexMsgId(const HistoryItem *item) const;
bool itemMigrated(MsgId msgId) const;
ChannelId itemChannel(MsgId msgId) const;
MsgId itemMsgId(MsgId msgId) const;
int32 migratedIndexSkip() const;
2014-08-20 05:32:50 +00:00
void fixItemIndex(int32 &current, MsgId msgId) const;
bool itemHasPoint(MsgId msgId, int32 index, int32 x, int32 y) const;
int32 itemHeight(MsgId msgId, int32 index) const;
void moveToNextItem(MsgId &msgId, int32 &index, MsgId upTo, int32 delta) const;
void updateDragSelection(MsgId dragSelFrom, int32 dragSelFromIndex, MsgId dragSelTo, int32 dragSelToIndex, bool dragSelecting);
2015-12-27 21:37:48 +00:00
void repaintItem(MsgId itemId, int32 itemIndex);
2014-08-20 05:32:50 +00:00
void touchResetSpeed();
void touchUpdateSpeed();
void touchDeaccelerate(int32 elapsed);
void applyDragSelection();
void addSelectionRange(int32 selFrom, int32 selTo, History *history);
2014-08-20 05:32:50 +00:00
void recountMargins();
int32 countHeight();
2014-08-15 11:19:32 +00:00
OverviewWidget *_overview;
ScrollArea *_scroll;
int32 _resizeIndex, _resizeSkip;
PeerData *_peer;
MediaOverviewType _type;
bool _reversed;
History *_migrated, *_history;
ChannelId _channel;
2014-08-20 05:32:50 +00:00
bool _selMode;
uint32 itemSelectedValue(int32 index) const;
int32 _rowsLeft, _rowWidth;
typedef QVector<LayoutItem*> Items;
Items _items;
typedef QMap<HistoryItem*, LayoutMediaItem*> LayoutItems;
LayoutItems _layoutItems;
typedef QMap<int32, LayoutOverviewDate*> LayoutDates;
LayoutDates _layoutDates;
2015-12-27 21:37:48 +00:00
LayoutMediaItem *layoutPrepare(HistoryItem *item);
LayoutItem *layoutPrepare(const QDate &date, bool month);
int32 setLayoutItem(int32 index, LayoutItem *item, int32 top);
2014-08-15 11:19:32 +00:00
FlatInput _search;
IconedButton _cancelSearch;
QVector<MsgId> _results;
int32 _itemsToBeLoaded;
// photos
int32 _photosInRow, _photosToAdd;
QTimer _searchTimer;
QString _searchQuery;
bool _inSearch, _searchFull, _searchFullMigrated;
mtpRequestId _searchRequest;
History::MediaOverview _searchResults;
MsgId _lastSearchId, _lastSearchMigratedId;
int32 _searchedCount;
enum SearchRequestType {
SearchFromStart,
SearchFromOffset,
SearchMigratedFromStart,
SearchMigratedFromOffset
};
void searchReceived(SearchRequestType type, const MTPmessages_Messages &result, mtpRequestId req);
bool searchFailed(SearchRequestType type, const RPCError &error, mtpRequestId req);
typedef QMap<QString, MTPmessages_Messages> SearchCache;
SearchCache _searchCache;
typedef QMap<mtpRequestId, QString> SearchQueries;
SearchQueries _searchQueries;
int32 _width, _height, _minHeight, _marginTop, _marginBottom;
2014-08-20 05:32:50 +00:00
QTimer _linkTipTimer;
2014-08-20 05:32:50 +00:00
// selection support, like in HistoryWidget
Qt::CursorShape _cursor;
HistoryCursorState _cursorState;
2014-08-20 05:32:50 +00:00
typedef QMap<MsgId, uint32> SelectedItems;
SelectedItems _selected;
enum DragAction {
NoDrag = 0x00,
PrepareDrag = 0x01,
Dragging = 0x02,
PrepareSelect = 0x03,
Selecting = 0x04,
};
DragAction _dragAction;
QPoint _dragStartPos, _dragPos;
2015-07-03 10:48:28 +00:00
MsgId _dragItem, _selectedMsgId;
2014-08-20 05:32:50 +00:00
int32 _dragItemIndex;
MsgId _mousedItem;
int32 _mousedItemIndex;
uint16 _dragSymbol;
bool _dragWasInactive;
2014-08-15 11:19:32 +00:00
2014-08-20 05:32:50 +00:00
TextLinkPtr _contextMenuLnk;
MsgId _dragSelFrom, _dragSelTo;
int32 _dragSelFromIndex, _dragSelToIndex;
bool _dragSelecting;
bool _touchScroll, _touchSelect, _touchInProgress;
QPoint _touchStart, _touchPrevPos, _touchPos;
QTimer _touchSelectTimer;
TouchScrollState _touchScrollState;
bool _touchPrevPosValid, _touchWaitingAcceleration;
QPoint _touchSpeed;
uint64 _touchSpeedTime, _touchAccelerationTime, _touchTime;
QTimer _touchScrollTimer;
2015-10-23 16:15:24 +00:00
PopupMenu *_menu;
2014-08-15 11:19:32 +00:00
};
2015-10-17 14:52:26 +00:00
class OverviewWidget : public TWidget, public RPCSender {
2014-08-15 11:19:32 +00:00
Q_OBJECT
public:
OverviewWidget(QWidget *parent, PeerData *peer, MediaOverviewType type);
2014-08-15 11:19:32 +00:00
void clear();
void resizeEvent(QResizeEvent *e);
void paintEvent(QPaintEvent *e);
2014-08-20 05:32:50 +00:00
void contextMenuEvent(QContextMenuEvent *e);
2014-08-15 11:19:32 +00:00
void scrollBy(int32 add);
void scrollReset();
2014-08-15 11:19:32 +00:00
void paintTopBar(QPainter &p, float64 over, int32 decreaseWidth);
void topBarClick();
PeerData *peer() const;
PeerData *migratePeer() const;
2014-08-15 11:19:32 +00:00
MediaOverviewType type() const;
void switchType(MediaOverviewType type);
2014-08-20 05:32:50 +00:00
void updateTopBarSelection();
2014-08-15 11:19:32 +00:00
int32 lastWidth() const;
int32 lastScrollTop() const;
2015-07-03 10:48:28 +00:00
int32 countBestScroll() const;
2014-08-15 11:19:32 +00:00
2015-07-03 10:48:28 +00:00
void fastShow(bool back = false, int32 lastScrollTop = -1);
2014-08-15 11:19:32 +00:00
void animShow(const QPixmap &oldAnimCache, const QPixmap &bgAnimTopBarCache, bool back = false, int32 lastScrollTop = -1);
2015-12-08 12:33:37 +00:00
void step_show(float64 ms, bool timer);
2014-08-15 11:19:32 +00:00
2015-10-17 14:52:26 +00:00
void updateWideMode();
2015-07-03 08:47:16 +00:00
void doneShow();
void mediaOverviewUpdated(PeerData *peer, MediaOverviewType type);
void changingMsgId(HistoryItem *row, MsgId newId);
void itemRemoved(HistoryItem *item);
2014-08-20 05:32:50 +00:00
QPoint clampMousePosition(QPoint point);
void checkSelectingScroll(QPoint point);
void noSelectingScroll();
bool touchScroll(const QPoint &delta);
void fillSelectedItems(SelectedItemSet &sel, bool forDelete);
2015-02-03 15:02:46 +00:00
void updateScrollColors();
void updateAfterDrag();
2015-10-17 14:52:26 +00:00
void grabStart() {
_sideShadow.hide();
_inGrab = true;
resizeEvent(0);
}
void grabFinish() {
_sideShadow.setVisible(cWideMode());
_inGrab = false;
resizeEvent(0);
}
2015-12-27 21:37:48 +00:00
void ui_repaintHistoryItem(const HistoryItem *item);
void notify_historyItemLayoutChanged(const HistoryItem *item);
2014-08-15 11:19:32 +00:00
~OverviewWidget();
public slots:
void activate();
void onScroll();
2014-08-20 05:32:50 +00:00
void onScrollTimer();
void onPlayerSongChanged(const FullMsgId &msgId);
2014-08-20 05:32:50 +00:00
void onForwardSelected();
void onDeleteSelected();
void onDeleteSelectedSure();
void onDeleteContextSure();
void onClearSelected();
2014-08-15 11:19:32 +00:00
private:
ScrollArea _scroll;
OverviewInner _inner;
bool _noDropResizeIndex;
QString _header;
2015-10-17 14:52:26 +00:00
Animation _a_show;
QPixmap _cacheUnder, _cacheOver, _cacheTopBarUnder, _cacheTopBarOver;
anim::ivalue a_coordUnder, a_coordOver;
anim::fvalue a_shadow;
2014-08-15 11:19:32 +00:00
int32 _scrollSetAfterShow;
2014-08-20 05:32:50 +00:00
QTimer _scrollTimer;
int32 _scrollDelta;
int32 _selCount;
PlainShadow _sideShadow, _topShadow;
2015-10-17 14:52:26 +00:00
bool _inGrab;
2014-08-15 11:19:32 +00:00
};