Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for placing the tab bar on the title bar #2428

Merged
merged 34 commits into from
Sep 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
7e2f5ff
WIP
sdottaka Aug 22, 2024
00d9c2b
WIP
sdottaka Aug 23, 2024
d0bf09a
WIP
sdottaka Aug 25, 2024
5ed5f4c
Merge branch 'master' into custom-titlebar
sdottaka Aug 28, 2024
10daec4
Merge branch 'master' into custom-titlebar
sdottaka Aug 31, 2024
4bee9e2
WIP
sdottaka Sep 1, 2024
8b3cd59
WIP
sdottaka Sep 1, 2024
6110e8f
WIP
sdottaka Sep 7, 2024
8875d62
Merge branch 'master' into custom-titlebar
sdottaka Sep 8, 2024
e867c0d
crystaledit/editlib/parses/*: refactor
sdottaka Sep 8, 2024
c82b15f
Merge branch 'master' into custom-titlebar
sdottaka Sep 8, 2024
a4b4150
WIP
sdottaka Sep 10, 2024
7496b33
WIP
sdottaka Sep 16, 2024
573af39
WIP
sdottaka Sep 17, 2024
a371119
Merge branch 'master' into custom-titlebar
sdottaka Sep 17, 2024
d4eb296
WIP
sdottaka Sep 18, 2024
0a4f3dc
Merge branch 'master' into custom-titlebar
sdottaka Sep 18, 2024
1f0c334
Merge branch 'master' into custom-titlebar
sdottaka Sep 18, 2024
3387acb
WIP
sdottaka Sep 19, 2024
862541a
Merge branch 'master' into custom-titlebar
sdottaka Sep 19, 2024
6617b92
WIP
sdottaka Sep 21, 2024
2b9a605
WIP
sdottaka Sep 21, 2024
e1be4c8
WIP
sdottaka Sep 22, 2024
e129685
WIP
sdottaka Sep 23, 2024
760bef2
WIP
sdottaka Sep 24, 2024
e485afd
WIP
sdottaka Sep 24, 2024
a1b27d1
Merge remote-tracking branch 'origin/master' into custom-titlebar
sdottaka Sep 25, 2024
18aa09a
WIP
sdottaka Sep 25, 2024
1633bb6
Merge branch 'master' into custom-titlebar
sdottaka Sep 28, 2024
a4ba334
WIP
sdottaka Sep 28, 2024
45a42ef
Merge branch 'master' into custom-titlebar
sdottaka Sep 28, 2024
cd1259a
Update Japanese.po
sdottaka Sep 28, 2024
d50e145
WIP
sdottaka Sep 28, 2024
0d800f3
Merge remote-tracking branch 'origin/master' into custom-titlebar
sdottaka Sep 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Src/BasicFlatStatusBar.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ class CBasicFlatStatusBar : public CStatusBar
{
DECLARE_DYNAMIC(CBasicFlatStatusBar)
public:
CBasicFlatStatusBar();
CBasicFlatStatusBar();

protected:
CPoint CBasicFlatStatusBar::GetClientCursorPos() const;
int GetIndexFromPoint(const CPoint& pt) const;
static COLORREF LightenColor(COLORREF color, double amount);

afx_msg void OnPaint();
afx_msg void OnPaint();
afx_msg BOOL OnEraseBkgnd(CDC *pDC);
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
afx_msg void OnMouseLeave();
afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
DECLARE_MESSAGE_MAP()
DECLARE_MESSAGE_MAP()

bool m_bMouseTracking;
int m_nTrackingPane;
Expand Down
Loading
Loading