Shutdown on Linux fix attempt. Draft remove in empty conversation fix.

Larger badge of unread messages in history-to-down button.
Submit bot-start by Enter. Fix icons show in chat without input field.
This commit is contained in:
John Preston 2016-06-21 18:58:07 +03:00
parent c73b5a6da4
commit af4b3ba023
12 changed files with 137 additions and 47 deletions

View File

@ -2288,7 +2288,9 @@ namespace {
setLaunchState(QuitRequested); setLaunchState(QuitRequested);
if (auto window = wnd()) { if (auto window = wnd()) {
window->hide(); if (!Sandbox::isSavingSession()) {
window->hide();
}
} }
if (auto mainwidget = main()) { if (auto mainwidget = main()) {
mainwidget->saveDraftToCloud(); mainwidget->saveDraftToCloud();

View File

@ -42,7 +42,6 @@ void applyPeerCloudDraft(PeerId peerId, const MTPDdraftMessage &draft) {
history->setCloudDraft(std_::move(cloudDraft)); history->setCloudDraft(std_::move(cloudDraft));
history->createLocalDraftFromCloud(); history->createLocalDraftFromCloud();
history->updateChatListSortPosition(); history->updateChatListSortPosition();
history->updateChatListEntry();
if (auto main = App::main()) { if (auto main = App::main()) {
main->applyCloudDraft(history); main->applyCloudDraft(history);
@ -56,7 +55,6 @@ void clearPeerCloudDraft(PeerId peerId) {
history->clearLocalDraft(); history->clearLocalDraft();
history->updateChatListSortPosition(); history->updateChatListSortPosition();
history->updateChatListEntry();
if (auto main = App::main()) { if (auto main = App::main()) {
main->applyCloudDraft(history); main->applyCloudDraft(history);

View File

@ -140,59 +140,78 @@ void paintRow(Painter &p, History *history, HistoryItem *item, Data::Draft *draf
history->peer->dialogName().drawElided(p, rectForName.left(), rectForName.top(), rectForName.width()); history->peer->dialogName().drawElided(p, rectForName.left(), rectForName.top(), rectForName.width());
} }
class UnreadBadgeStyleData : public Data::AbstractStructure { struct UnreadBadgeSizeData {
public:
QImage circle; QImage circle;
QPixmap left[4], right[4]; QPixmap left[4], right[4];
};
class UnreadBadgeStyleData : public Data::AbstractStructure {
public:
UnreadBadgeSizeData sizes[UnreadBadgeSizesCount];
style::color bg[4] = { st::dialogsUnreadBg, st::dialogsUnreadBgActive, st::dialogsUnreadBgMuted, st::dialogsUnreadBgMutedActive }; style::color bg[4] = { st::dialogsUnreadBg, st::dialogsUnreadBgActive, st::dialogsUnreadBgMuted, st::dialogsUnreadBgMutedActive };
}; };
Data::GlobalStructurePointer<UnreadBadgeStyleData> unreadBadgeStyle; Data::GlobalStructurePointer<UnreadBadgeStyleData> unreadBadgeStyle;
void createCircleMask(int size) { void createCircleMask(UnreadBadgeSizeData *data, int size) {
if (!unreadBadgeStyle->circle.isNull()) return; if (!data->circle.isNull()) return;
unreadBadgeStyle->circle = style::createCircleMask(size); data->circle = style::createCircleMask(size);
} }
QImage colorizeCircleHalf(int size, int half, int xoffset, style::color color) { QImage colorizeCircleHalf(UnreadBadgeSizeData *data, int size, int half, int xoffset, style::color color) {
auto result = style::colorizeImage(unreadBadgeStyle->circle, color, QRect(xoffset, 0, half, size)); auto result = style::colorizeImage(data->circle, color, QRect(xoffset, 0, half, size));
result.setDevicePixelRatio(cRetinaFactor()); result.setDevicePixelRatio(cRetinaFactor());
return result; return result;
} }
} // namepsace } // namepsace
void paintUnreadBadge(Painter &p, const QRect &rect, bool active, bool muted) { void paintUnreadBadge(Painter &p, const QRect &rect, const UnreadBadgeStyle &st) {
int index = (active ? 0x01 : 0x00) | (muted ? 0x02 : 0x00); t_assert(rect.height() == st.size);
int size = rect.height(), sizehalf = size / 2;
int index = (st.active ? 0x01 : 0x00) | (st.muted ? 0x02 : 0x00);
int size = st.size, sizehalf = size / 2;
unreadBadgeStyle.createIfNull(); unreadBadgeStyle.createIfNull();
auto badgeData = unreadBadgeStyle->sizes;
if (st.sizeId > 0) {
t_assert(st.sizeId < UnreadBadgeSizesCount);
badgeData = &unreadBadgeStyle->sizes[st.sizeId];
}
style::color bg = unreadBadgeStyle->bg[index]; style::color bg = unreadBadgeStyle->bg[index];
if (unreadBadgeStyle->left[index].isNull()) { if (badgeData->left[index].isNull()) {
int imgsize = size * cIntRetinaFactor(), imgsizehalf = sizehalf * cIntRetinaFactor(); int imgsize = size * cIntRetinaFactor(), imgsizehalf = sizehalf * cIntRetinaFactor();
createCircleMask(size); createCircleMask(badgeData, size);
unreadBadgeStyle->left[index] = App::pixmapFromImageInPlace(colorizeCircleHalf(imgsize, imgsizehalf, 0, bg)); badgeData->left[index] = App::pixmapFromImageInPlace(colorizeCircleHalf(badgeData, imgsize, imgsizehalf, 0, bg));
unreadBadgeStyle->right[index] = App::pixmapFromImageInPlace(colorizeCircleHalf(imgsize, imgsizehalf, imgsize - imgsizehalf, bg)); badgeData->right[index] = App::pixmapFromImageInPlace(colorizeCircleHalf(badgeData, imgsize, imgsizehalf, imgsize - imgsizehalf, bg));
} }
int bar = rect.width() - 2 * sizehalf; int bar = rect.width() - 2 * sizehalf;
p.drawPixmap(rect.x(), rect.y(), unreadBadgeStyle->left[index]); p.drawPixmap(rect.x(), rect.y(), badgeData->left[index]);
if (bar) { if (bar) {
p.fillRect(rect.x() + sizehalf, rect.y(), bar, rect.height(), bg); p.fillRect(rect.x() + sizehalf, rect.y(), bar, rect.height(), bg);
} }
p.drawPixmap(rect.x() + sizehalf + bar, rect.y(), unreadBadgeStyle->right[index]); p.drawPixmap(rect.x() + sizehalf + bar, rect.y(), badgeData->right[index]);
} }
void paintUnreadCount(Painter &p, const QString &text, int x, int y, style::align align, bool active, bool muted, int *outUnreadWidth) { UnreadBadgeStyle::UnreadBadgeStyle()
int unreadWidth = st::dialogsUnreadFont->width(text); : align(style::al_right)
, active(false)
, muted(false)
, size(st::dialogsUnreadHeight)
, sizeId(UnreadBadgeInDialogs)
, font(st::dialogsUnreadFont) {
}
void paintUnreadCount(Painter &p, const QString &text, int x, int y, const UnreadBadgeStyle &st, int *outUnreadWidth) {
int unreadWidth = st.font->width(text);
int unreadRectWidth = unreadWidth + 2 * st::dialogsUnreadPadding; int unreadRectWidth = unreadWidth + 2 * st::dialogsUnreadPadding;
int unreadRectHeight = st::dialogsUnreadHeight; int unreadRectHeight = st.size;
accumulate_max(unreadRectWidth, unreadRectHeight); accumulate_max(unreadRectWidth, unreadRectHeight);
int unreadRectLeft = x; int unreadRectLeft = x;
if ((align & Qt::AlignHorizontal_Mask) & style::al_center) { if ((st.align & Qt::AlignHorizontal_Mask) & style::al_center) {
unreadRectLeft = (x - unreadRectWidth) / 2; unreadRectLeft = (x - unreadRectWidth) / 2;
} else if ((align & Qt::AlignHorizontal_Mask) & style::al_right) { } else if ((st.align & Qt::AlignHorizontal_Mask) & style::al_right) {
unreadRectLeft = x - unreadRectWidth; unreadRectLeft = x - unreadRectWidth;
} }
int unreadRectTop = y; int unreadRectTop = y;
@ -200,11 +219,11 @@ void paintUnreadCount(Painter &p, const QString &text, int x, int y, style::alig
*outUnreadWidth = unreadRectWidth; *outUnreadWidth = unreadRectWidth;
} }
paintUnreadBadge(p, QRect(unreadRectLeft, unreadRectTop, unreadRectWidth, unreadRectHeight), active, muted); paintUnreadBadge(p, QRect(unreadRectLeft, unreadRectTop, unreadRectWidth, unreadRectHeight), st);
p.setFont(st::dialogsUnreadFont); p.setFont(st.font);
p.setPen(active ? st::dialogsUnreadFgActive : st::dialogsUnreadFg); p.setPen(st.active ? st::dialogsUnreadFgActive : st::dialogsUnreadFg);
p.drawText(unreadRectLeft + (unreadRectWidth - unreadWidth) / 2, unreadRectTop + st::dialogsUnreadTop + st::dialogsUnreadFont->ascent, text); p.drawText(unreadRectLeft + (unreadRectWidth - unreadWidth) / 2, unreadRectTop + st::dialogsUnreadTop + st.font->ascent, text);
} }
void RowPainter::paint(Painter &p, const Row *row, int w, bool active, bool selected, bool onlyBackground) { void RowPainter::paint(Painter &p, const Row *row, int w, bool active, bool selected, bool onlyBackground) {
@ -242,7 +261,11 @@ void RowPainter::paint(Painter &p, const Row *row, int w, bool active, bool sele
int unreadRight = w - st::dialogsPadding.x(); int unreadRight = w - st::dialogsPadding.x();
int unreadTop = texttop + st::dialogsTextFont->ascent - st::dialogsUnreadFont->ascent - st::dialogsUnreadTop; int unreadTop = texttop + st::dialogsTextFont->ascent - st::dialogsUnreadFont->ascent - st::dialogsUnreadTop;
int unreadWidth = 0; int unreadWidth = 0;
paintUnreadCount(p, counter, unreadRight, unreadTop, style::al_right, active, mutedCounter, &unreadWidth);
UnreadBadgeStyle st;
st.active = active;
st.muted = history->mute();
paintUnreadCount(p, counter, unreadRight, unreadTop, st, &unreadWidth);
availableWidth -= unreadWidth + st::dialogsUnreadPadding; availableWidth -= unreadWidth + st::dialogsUnreadPadding;
} }
if (history->typing.isEmpty() && history->sendActions.isEmpty()) { if (history->typing.isEmpty() && history->sendActions.isEmpty()) {
@ -281,7 +304,9 @@ void paintImportantSwitch(Painter &p, Mode current, int w, bool selected, bool o
if (mutedHidden) { if (mutedHidden) {
if (int32 unread = App::histories().unreadMutedCount()) { if (int32 unread = App::histories().unreadMutedCount()) {
int unreadRight = w - st::dialogsPadding.x(); int unreadRight = w - st::dialogsPadding.x();
paintUnreadCount(p, QString::number(unread), unreadRight, unreadTop, style::al_right, false, true, nullptr); UnreadBadgeStyle st;
st.muted = true;
paintUnreadCount(p, QString::number(unread), unreadRight, unreadTop, st, nullptr);
} }
} }
} }

View File

@ -35,8 +35,23 @@ public:
void paintImportantSwitch(Painter &p, Mode current, int w, bool selected, bool onlyBackground); void paintImportantSwitch(Painter &p, Mode current, int w, bool selected, bool onlyBackground);
void paintUnreadCount(Painter &p, const QString &text, int x, int y, style::align align, bool active, bool muted, int *outUnreadWidth); enum UnreadBadgeSize {
void paintUnreadBadge(Painter &p, const QRect &rect, bool active, bool muted); UnreadBadgeInDialogs = 0,
UnreadBadgeInHistoryToDown,
UnreadBadgeSizesCount
};
struct UnreadBadgeStyle {
UnreadBadgeStyle();
style::align align;
bool active;
bool muted;
int size;
UnreadBadgeSize sizeId;
style::font font;
};
void paintUnreadCount(Painter &p, const QString &text, int x, int y, const UnreadBadgeStyle &st, int *outUnreadWidth = nullptr);
} // namespace Layout } // namespace Layout
} // namespace Dialogs } // namespace Dialogs

View File

@ -230,7 +230,6 @@ Data::Draft *History::createCloudDraft(Data::Draft *fromDraft) {
cloudDraftTextCache.clear(); cloudDraftTextCache.clear();
updateChatListSortPosition(); updateChatListSortPosition();
updateChatListEntry();
return cloudDraft(); return cloudDraft();
} }
@ -248,7 +247,6 @@ void History::clearCloudDraft() {
_cloudDraft = nullptr; _cloudDraft = nullptr;
cloudDraftTextCache.clear(); cloudDraftTextCache.clear();
updateChatListSortPosition(); updateChatListSortPosition();
updateChatListEntry();
} }
} }
@ -1759,6 +1757,7 @@ namespace {
} }
inline uint64 dialogPosFromDate(const QDateTime &date) { inline uint64 dialogPosFromDate(const QDateTime &date) {
if (date.isNull()) return 0;
return (uint64(date.toTime_t()) << 32) | (++_dialogsPosToTopShift); return (uint64(date.toTime_t()) << 32) | (++_dialogsPosToTopShift);
} }
@ -1769,8 +1768,8 @@ void History::setLastMessage(HistoryItem *msg) {
setChatsListDate(msg->date); setChatsListDate(msg->date);
} else { } else {
lastMsg = 0; lastMsg = 0;
updateChatListEntry();
} }
updateChatListEntry();
} }
bool History::needUpdateInChatList() const { bool History::needUpdateInChatList() const {
@ -1796,7 +1795,7 @@ void History::setChatsListDate(const QDateTime &date) {
void History::updateChatListSortPosition() { void History::updateChatListSortPosition() {
auto chatListDate = [this]() { auto chatListDate = [this]() {
if (auto draft = cloudDraft()) { if (auto draft = cloudDraft()) {
if (draft->date > lastMsgDate) { if (!Data::draftIsNull(draft) && draft->date > lastMsgDate) {
return draft->date; return draft->date;
} }
} }
@ -1804,8 +1803,15 @@ void History::updateChatListSortPosition() {
}; };
_sortKeyInChatList = dialogPosFromDate(chatListDate()); _sortKeyInChatList = dialogPosFromDate(chatListDate());
if (App::main() && needUpdateInChatList()) { if (auto m = App::main()) {
App::main()->createDialog(this); if (needUpdateInChatList()) {
if (_sortKeyInChatList) {
m->createDialog(this);
updateChatListEntry();
} else {
m->deleteConversation(peer, false);
}
}
} }
} }

View File

@ -42,3 +42,5 @@ membersInnerDropdown: InnerDropdown(defaultInnerDropdown) {
scrollMargin: margins(0px, 5px, 0px, 5px); scrollMargin: margins(0px, 5px, 0px, 5px);
scrollPadding: margins(0px, 3px, 8px, 3px); scrollPadding: margins(0px, 3px, 8px, 3px);
} }
historyToDownBadgeFont: semiboldFont;
historyToDownBadgeSize: 22px;

View File

@ -1477,6 +1477,10 @@ void HistoryInner::keyPressEvent(QKeyEvent *e) {
if (!_selected.isEmpty() && selectedForDelete == selectedForForward) { if (!_selected.isEmpty() && selectedForDelete == selectedForForward) {
_widget->onDeleteSelected(); _widget->onDeleteSelected();
} }
} else if (e->key() == Qt::Key_Return || e->key() == Qt::Key_Enter) {
if (_selected.isEmpty()) {
_widget->onListEnterPressed();
}
} else { } else {
e->ignore(); e->ignore();
} }
@ -5863,10 +5867,13 @@ void HistoryWidget::onFilesDrop(const QMimeData *data) {
} }
void HistoryWidget::onKbToggle(bool manual) { void HistoryWidget::onKbToggle(bool manual) {
auto fieldEnabled = canWriteMessage();
if (_kbShown || _kbReplyTo) { if (_kbShown || _kbReplyTo) {
_kbHide.hide(); _kbHide.hide();
if (_kbShown) { if (_kbShown) {
_kbShow.show(); if (fieldEnabled) {
_kbShow.show();
}
if (manual && _history) { if (manual && _history) {
_history->lastKeyboardHiddenId = _keyboard.forMsgId().msg; _history->lastKeyboardHiddenId = _keyboard.forMsgId().msg;
} }
@ -5890,14 +5897,16 @@ void HistoryWidget::onKbToggle(bool manual) {
} else if (!_keyboard.hasMarkup() && _keyboard.forceReply()) { } else if (!_keyboard.hasMarkup() && _keyboard.forceReply()) {
_kbHide.hide(); _kbHide.hide();
_kbShow.hide(); _kbShow.hide();
_cmdStart.show(); if (fieldEnabled) {
_cmdStart.show();
}
_kbScroll.hide(); _kbScroll.hide();
_kbShown = false; _kbShown = false;
_field.setMaxHeight(st::maxFieldHeight); _field.setMaxHeight(st::maxFieldHeight);
_kbReplyTo = (_peer->isChat() || _peer->isChannel() || _keyboard.forceReply()) ? App::histItemById(_keyboard.forMsgId()) : 0; _kbReplyTo = (_peer->isChat() || _peer->isChannel() || _keyboard.forceReply()) ? App::histItemById(_keyboard.forMsgId()) : 0;
if (_kbReplyTo && !_editMsgId && !_replyToId) { if (_kbReplyTo && !_editMsgId && !_replyToId && fieldEnabled) {
updateReplyToName(); updateReplyToName();
_replyEditMsgText.setText(st::msgFont, _kbReplyTo->inDialogsText(), _textDlgOptions); _replyEditMsgText.setText(st::msgFont, _kbReplyTo->inDialogsText(), _textDlgOptions);
_fieldBarCancel.show(); _fieldBarCancel.show();
@ -5906,7 +5915,7 @@ void HistoryWidget::onKbToggle(bool manual) {
if (manual && _history) { if (manual && _history) {
_history->lastKeyboardHiddenId = 0; _history->lastKeyboardHiddenId = 0;
} }
} else { } else if (fieldEnabled) {
_kbHide.show(); _kbHide.show();
_kbShow.hide(); _kbShow.hide();
_kbScroll.show(); _kbScroll.show();
@ -5927,7 +5936,7 @@ void HistoryWidget::onKbToggle(bool manual) {
} }
} }
resizeEvent(0); resizeEvent(0);
if (_kbHide.isHidden()) { if (_kbHide.isHidden() && canWriteMessage()) {
_attachEmoji.show(); _attachEmoji.show();
} else { } else {
_attachEmoji.hide(); _attachEmoji.hide();
@ -8072,6 +8081,12 @@ void HistoryWidget::onListEscapePressed() {
} }
} }
void HistoryWidget::onListEnterPressed() {
if (!_botStart.isHidden()) {
onBotStart();
}
}
void HistoryWidget::onClearSelected() { void HistoryWidget::onClearSelected() {
if (_list) _list->clearSelectedItems(); if (_list) _list->clearSelectedItems();
} }

View File

@ -651,6 +651,7 @@ public:
void stopRecording(bool send); void stopRecording(bool send);
void onListEscapePressed(); void onListEscapePressed();
void onListEnterPressed();
void sendBotCommand(PeerData *peer, UserData *bot, const QString &cmd, MsgId replyTo); void sendBotCommand(PeerData *peer, UserData *bot, const QString &cmd, MsgId replyTo);
bool insertBotCommand(const QString &cmd, bool specialGif); bool insertBotCommand(const QString &cmd, bool specialGif);

View File

@ -1285,9 +1285,14 @@ void MainWindow::toggleDisplayNotifyFromTray() {
} }
void MainWindow::closeEvent(QCloseEvent *e) { void MainWindow::closeEvent(QCloseEvent *e) {
e->ignore(); if (Sandbox::isSavingSession()) {
if (!MTP::authedId() || Sandbox::isSavingSession() || !Ui::hideWindowNoQuit()) { e->accept();
App::quit(); App::quit();
} else {
e->ignore();
if (!MTP::authedId() || !Ui::hideWindowNoQuit()) {
App::quit();
}
} }
} }

View File

@ -68,12 +68,17 @@ void HistoryDownButton::paintEvent(QPaintEvent *e) {
st::historyToDownArrow.paint(p, QPoint(0, st::historyToDownPaddingTop), width()); st::historyToDownArrow.paint(p, QPoint(0, st::historyToDownPaddingTop), width());
if (_unreadCount > 0) { if (_unreadCount > 0) {
p.setOpacity(opacity); p.setOpacity(opacity);
bool active = false, muted = false;
auto unreadString = QString::number(_unreadCount); auto unreadString = QString::number(_unreadCount);
if (unreadString.size() > 4) { if (unreadString.size() > 4) {
unreadString = qsl("..") + unreadString.mid(unreadString.size() - 4); unreadString = qsl("..") + unreadString.mid(unreadString.size() - 4);
} }
Dialogs::Layout::paintUnreadCount(p, unreadString, width(), 0, style::al_center, active, muted, nullptr);
Dialogs::Layout::UnreadBadgeStyle st;
st.align = style::al_center;
st.font = st::historyToDownBadgeFont;
st.size = st::historyToDownBadgeSize;
st.sizeId = Dialogs::Layout::UnreadBadgeInHistoryToDown;
Dialogs::Layout::paintUnreadCount(p, unreadString, width(), 0, st, nullptr);
} }
} }

View File

@ -1268,6 +1268,11 @@
<ClCompile Include="SourceFiles\overviewwidget.cpp" /> <ClCompile Include="SourceFiles\overviewwidget.cpp" />
<ClCompile Include="SourceFiles\overview\overview_layout.cpp" /> <ClCompile Include="SourceFiles\overview\overview_layout.cpp" />
<ClCompile Include="SourceFiles\passcodewidget.cpp" /> <ClCompile Include="SourceFiles\passcodewidget.cpp" />
<ClCompile Include="SourceFiles\platform\linux\linux_libs.cpp">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Deploy|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="SourceFiles\platform\linux\main_window_linux.cpp"> <ClCompile Include="SourceFiles\platform\linux\main_window_linux.cpp">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild> <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Deploy|Win32'">true</ExcludedFromBuild> <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Deploy|Win32'">true</ExcludedFromBuild>
@ -1726,6 +1731,11 @@
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp</Outputs> <Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp</Outputs>
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">"$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" "-fstdafx.h" "-f../../SourceFiles/platform/linux/main_window_linux.h" -DAL_LIBTYPE_STATIC -DUNICODE -DWIN32 -DWIN64 -DHAVE_STDINT_H -DZLIB_WINAPI -DQT_NO_DEBUG -DNDEBUG -D_SCL_SECURE_NO_WARNINGS "-I.\SourceFiles" "-I.\GeneratedFiles" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include" "-I$(QTDIR)\include\QtCore\5.6.0\QtCore" "-I$(QTDIR)\include\QtGui\5.6.0\QtGui" "-I.\..\..\Libraries\breakpad\src" "-I.\..\..\Libraries\lzma\C" "-I.\..\..\Libraries\libexif-0.6.20" "-I.\..\..\Libraries\zlib-1.2.8" "-I.\..\..\Libraries\ffmpeg" "-I.\..\..\Libraries\openal-soft\include" "-I.\ThirdParty\minizip" "-I.\..\..\Libraries\openssl\Release\include"</Command> <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">"$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" "-fstdafx.h" "-f../../SourceFiles/platform/linux/main_window_linux.h" -DAL_LIBTYPE_STATIC -DUNICODE -DWIN32 -DWIN64 -DHAVE_STDINT_H -DZLIB_WINAPI -DQT_NO_DEBUG -DNDEBUG -D_SCL_SECURE_NO_WARNINGS "-I.\SourceFiles" "-I.\GeneratedFiles" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include" "-I$(QTDIR)\include\QtCore\5.6.0\QtCore" "-I$(QTDIR)\include\QtGui\5.6.0\QtGui" "-I.\..\..\Libraries\breakpad\src" "-I.\..\..\Libraries\lzma\C" "-I.\..\..\Libraries\libexif-0.6.20" "-I.\..\..\Libraries\zlib-1.2.8" "-I.\..\..\Libraries\ffmpeg" "-I.\..\..\Libraries\openal-soft\include" "-I.\ThirdParty\minizip" "-I.\..\..\Libraries\openssl\Release\include"</Command>
</CustomBuild> </CustomBuild>
<ClInclude Include="SourceFiles\platform\linux\linux_libs.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Deploy|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="SourceFiles\platform\platform_main_window.h" /> <ClInclude Include="SourceFiles\platform\platform_main_window.h" />
<CustomBuild Include="SourceFiles\platform\win\main_window_win.h"> <CustomBuild Include="SourceFiles\platform\win\main_window_win.h">
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Deploy|Win32'">$(QTDIR)\bin\moc.exe;%(FullPath);$(QTDIR)\bin\moc.exe;%(FullPath)</AdditionalInputs> <AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Deploy|Win32'">$(QTDIR)\bin\moc.exe;%(FullPath);$(QTDIR)\bin\moc.exe;%(FullPath)</AdditionalInputs>

View File

@ -1341,6 +1341,9 @@
<ClCompile Include="GeneratedFiles\Release\moc_inner_dropdown.cpp"> <ClCompile Include="GeneratedFiles\Release\moc_inner_dropdown.cpp">
<Filter>GeneratedFiles\Release</Filter> <Filter>GeneratedFiles\Release</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="SourceFiles\platform\linux\linux_libs.cpp">
<Filter>SourceFiles\platform\linux</Filter>
</ClCompile>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="SourceFiles\stdafx.h"> <ClInclude Include="SourceFiles\stdafx.h">
@ -1589,6 +1592,9 @@
<ClInclude Include="SourceFiles\platform\winrt\main_window_winrt.h"> <ClInclude Include="SourceFiles\platform\winrt\main_window_winrt.h">
<Filter>SourceFiles\platform\winrt</Filter> <Filter>SourceFiles\platform\winrt</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="SourceFiles\platform\linux\linux_libs.h">
<Filter>SourceFiles\platform\linux</Filter>
</ClInclude>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<CustomBuild Include="SourceFiles\application.h"> <CustomBuild Include="SourceFiles\application.h">