This repository has been archived by the owner on Sep 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 613
Fixes several aero and dark shell issues #443
Closed
Closed
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
233cc09
Fixes several aero and dark shell issues
JeffryBooher 029e24c
fix lost change
JeffryBooher 705c896
remove unused code
JeffryBooher fdb166c
rtc: minor nits and color change from @larz0
JeffryBooher 5974f77
change tx border per @larz0
JeffryBooher 4977cc7
rtc
JeffryBooher f049399
test code for @bchintx
JeffryBooher 9542f5c
experimental fixes for windows 7
JeffryBooher 9ea05fc
remove debug code/fix white line
JeffryBooher eedf571
revert change to override WM_NCPAINT
JeffryBooher 22f9f55
Optimize Drawing and fix white line
JeffryBooher bada0ee
Optimize Drawing and fix white line on popup windows
JeffryBooher c957c70
revert background brush
JeffryBooher File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
#pragma once | ||
/* | ||
* Copyright (c) 2014 Adobe Systems Incorporated. All rights reserved. | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a | ||
* copy of this software and associated documentation files (the "Software"), | ||
* to deal in the Software without restriction, including without limitation | ||
* the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
* and/or sell copies of the Software, and to permit persons to whom the | ||
* Software is furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
* DEALINGS IN THE SOFTWARE. | ||
*/ | ||
#include "cef_window.h" | ||
|
||
|
||
class cef_buffered_dc | ||
{ | ||
public: | ||
cef_buffered_dc(cef_window* window, HDC hdc = NULL) | ||
: mWnd(window) | ||
, mWindowDC(hdc) | ||
, mDcMem(NULL) | ||
, mBitmap(NULL) | ||
, mBmOld(NULL) | ||
, mWidth(0) | ||
, mHeight(0) | ||
, mReleaseDcOnDestroy(false) | ||
{ | ||
CommonInit(); | ||
} | ||
|
||
operator HDC() | ||
{ | ||
return mDcMem; | ||
} | ||
|
||
HDC GetWindowDC() | ||
{ | ||
return mWindowDC; | ||
} | ||
|
||
~cef_buffered_dc() | ||
{ | ||
Destroy(); | ||
} | ||
|
||
private: | ||
cef_buffered_dc() | ||
{ | ||
} | ||
|
||
cef_buffered_dc(const cef_buffered_dc& other) | ||
{ | ||
} | ||
|
||
protected: | ||
void CommonInit() | ||
{ | ||
if (mWnd) { | ||
if (mWindowDC == NULL) { | ||
mWindowDC = mWnd->GetDC(); | ||
mReleaseDcOnDestroy = true; | ||
} | ||
|
||
RECT rectWindow; | ||
mWnd->GetWindowRect(&rectWindow); | ||
mWidth = ::RectWidth(rectWindow); | ||
mHeight = ::RectHeight(rectWindow); | ||
|
||
mDcMem = ::CreateCompatibleDC(mWindowDC); | ||
mBitmap = ::CreateCompatibleBitmap(mWindowDC, mWidth, mHeight); | ||
mBmOld = ::SelectObject(mDcMem, mBitmap); | ||
} | ||
} | ||
|
||
void Destroy() | ||
{ | ||
if (mWnd) { | ||
::BitBlt(mWindowDC, 0, 0, mWidth, mHeight, mDcMem, 0, 0, SRCCOPY); | ||
|
||
::SelectObject(mDcMem, mBmOld); | ||
::DeleteObject(mBitmap); | ||
::DeleteDC(mDcMem); | ||
|
||
if (mReleaseDcOnDestroy) { | ||
mWnd->ReleaseDC(mWindowDC); | ||
} | ||
} | ||
} | ||
|
||
cef_window* mWnd; | ||
HDC mWindowDC; | ||
HDC mDcMem; | ||
HBITMAP mBitmap; | ||
HGDIOBJ mBmOld; | ||
int mWidth; | ||
int mHeight; | ||
bool mReleaseDcOnDestroy; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just to be safe, you should check for mWnd != NULL. eg. someone else uses this class or maybe if new code sneaks in that calls the hidden constructor from within this class.