Closed Bug 1441873 Opened 7 years ago Closed 7 years ago

[CSD] Remove nsWindow::mIsCSDAvailable

Categories

(Core :: Widget: Gtk, enhancement, P3)

60 Branch
enhancement

Tracking

()

RESOLVED FIXED
mozilla61
Tracking Status
firefox60 --- wontfix
firefox61 --- fixed

People

(Reporter: stransky, Assigned: stransky)

References

(Blocks 1 open bug)

Details

(Keywords: polish)

Attachments

(1 file)

We don't need mIsCSDAvailable as CSDSupportLevel may serve here as well.
Summary: [CSD] Remove mIsCSDAvailable → [CSD] Remove nsWindow::mIsCSDAvailable
Severity: normal → minor
Priority: -- → P3
Keywords: polish
Comment on attachment 8954794 [details] Bug 1441873 - [CSD] Remove nsWindow::mIsCSDAvailable and replace with CSDSupportLevel state, https://reviewboard.mozilla.org/r/223916/#review233806 ::: widget/gtk/nsWindow.h:497 (Diff revision 1) > // window. See bug 1225044. > unsigned int mPendingConfigures; > > - bool mIsCSDAvailable; > + // Window titlebar rendering mode, CSD_SUPPORT_NONE if it's disabled > + // for this window. > + CSDSupportLevel mCSDAvailable; I'd better prefer to name this mCSDSupportLevel. It makes more sence in later code and it also reflect the type of the variable. ::: widget/gtk/nsWindow.cpp:6564 (Diff revision 1) > SetDrawsInTitlebar(aMargins.top == 0); > return NS_OK; > } > > void > nsWindow::SetDrawsInTitlebar(bool aState) Looking at the method name and usage of mIsCSDEnabled, wouldn't renaming mIsCSDEnabled to mDrawInTitlebar also make a sense? Also consider rename of SetDrawsInTitlebar to SetDrawInTitlebar as it sounds a bit awkward. ::: widget/gtk/nsWindow.cpp:6569 (Diff revision 1) > nsWindow::SetDrawsInTitlebar(bool aState) > { > - if (!mIsCSDAvailable || aState == mIsCSDEnabled) > + if (mCSDAvailable == CSD_SUPPORT_NONE || aState == mIsCSDEnabled) > return; > > if (mShell) { Does it make sense to set mIsCSDEnabled when mShell==nullptr? Maybe we could move it above together with aState == mIsCSDEnabled. ::: widget/gtk/nsWindow.cpp:6570 (Diff revision 1) > { > - if (!mIsCSDAvailable || aState == mIsCSDEnabled) > + if (mCSDAvailable == CSD_SUPPORT_NONE || aState == mIsCSDEnabled) > return; > > if (mShell) { > - if (GetCSDSupportLevel() == CSD_SUPPORT_SYSTEM) { > + if (mCSDAvailable == CSD_SUPPORT_SYSTEM) { Hm, looking at this, maybe switch could be more straighforward (with moving the (mCSDAvailable == CSD_SUPPORT_NONE) also to the switch ::: widget/gtk/nsWindow.cpp:6902 (Diff revision 1) > return NS_OK; > } > #endif > > bool > nsWindow::DoDrawTitlebar() const Looks like this method is no longer used anywhere. Do the mSizeState needs to be reflected somewhere?
Attachment #8954794 - Flags: review?(jhorak) → review-
Comment on attachment 8954794 [details] Bug 1441873 - [CSD] Remove nsWindow::mIsCSDAvailable and replace with CSDSupportLevel state, https://reviewboard.mozilla.org/r/223916/#review233806 > Hm, looking at this, maybe switch could be more straighforward (with moving the (mCSDAvailable == CSD_SUPPORT_NONE) also to the switch That makes the code too much indented and also we'd need to set mIsCSDEnabled = aState; for CSD_SUPPORT_SYSTEM/CLIENT only. I'd rather leave it as is.
Comment on attachment 8954794 [details] Bug 1441873 - [CSD] Remove nsWindow::mIsCSDAvailable and replace with CSDSupportLevel state, https://reviewboard.mozilla.org/r/223916/#review237452
Attachment #8954794 - Flags: review?(jhorak) → review+
Pushed by stransky@redhat.com: https://hg.mozilla.org/integration/autoland/rev/179e31d8306f [CSD] Remove nsWindow::mIsCSDAvailable and replace with CSDSupportLevel state, r=jhorak
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla61
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: