mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-07-22 05:14:41 +02:00
[NEW_FEATURE] VERTICAL/MULTILINE feature done.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository@116 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
parent
05ac5e63cb
commit
4b4e1f9967
@ -3034,7 +3034,7 @@ void Notepad_plus::command(int id)
|
||||
getMainClientRect(rc);
|
||||
|
||||
_dockingManager.reSizeTo(rc);
|
||||
//::SendMessage(_hSelf, IDM_VIEW_REDUCETABBAR, 0, 0);
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -159,7 +159,8 @@ public:
|
||||
(TabBarPlus::drawTabCloseButton()?TAB_CLOSEBUTTON:0) | \
|
||||
(TabBarPlus::isDbClk2Close()?TAB_DBCLK2CLOSE:0) | \
|
||||
(TabBarPlus::isVertical() ? TAB_VERTICAL:0) | \
|
||||
(TabBarPlus::isMultiLine() ? TAB_MULTILINE:0);
|
||||
(TabBarPlus::isMultiLine() ? TAB_MULTILINE:0) |\
|
||||
(nppGUI._tabStatus & TAB_HIDE);
|
||||
nppGUI._splitterPos = _subSplitter.isVertical()?POS_VERTICAL:POS_HORIZOTAL;
|
||||
UserDefineDialog *udd = _pEditView->getUserDefineDlg();
|
||||
bool b = udd->isDocked();
|
||||
|
@ -145,8 +145,9 @@ BOOL CALLBACK BarsDlg::run_dlgProc(UINT Message, WPARAM wParam, LPARAM lParam)
|
||||
::SendDlgItemMessage(_hSelf, IDC_CHECK_DBCLICK2CLOSE, BM_SETCHECK, tabBarStatus & TAB_DBCLK2CLOSE, 0);
|
||||
::SendDlgItemMessage(_hSelf, IDC_CHECK_TAB_VERTICAL, BM_SETCHECK, tabBarStatus & TAB_VERTICAL, 0);
|
||||
::SendDlgItemMessage(_hSelf, IDC_CHECK_TAB_MULTILINE, BM_SETCHECK, tabBarStatus & TAB_MULTILINE, 0);
|
||||
|
||||
::SendDlgItemMessage(_hSelf, IDC_CHECK_TAB_HIDE, BM_SETCHECK, tabBarStatus & TAB_HIDE, 0);
|
||||
|
||||
::SendMessage(_hSelf, WM_COMMAND, IDC_CHECK_TAB_HIDE, 0);
|
||||
::SendDlgItemMessage(_hSelf, IDC_CHECK_SHOWSTATUSBAR, BM_SETCHECK, showStatus, 0);
|
||||
|
||||
if (!nppGUI._doTaskList)
|
||||
|
@ -145,8 +145,8 @@
|
||||
#define IDM_VIEW_REFRESHTABAR (IDM_VIEW + 40)
|
||||
#define IDM_VIEW_WRAP_SYMBOL (IDM_VIEW + 41)
|
||||
#define IDM_VIEW_HIDELINES (IDM_VIEW + 42)
|
||||
//#define IDM_VIEW_DRAWTABBAR_VERTICAL (IDM_VIEW + 43)
|
||||
//#define IDM_VIEW_DRAWTABBAR_MULTILINE (IDM_VIEW + 44)
|
||||
#define IDM_VIEW_DRAWTABBAR_VERTICAL (IDM_VIEW + 43)
|
||||
#define IDM_VIEW_DRAWTABBAR_MULTILINE (IDM_VIEW + 44)
|
||||
//#define (IDM_VIEW + 45)
|
||||
|
||||
#define IDM_VIEW_FOLD (IDM_VIEW + 50)
|
||||
|
Loading…
x
Reference in New Issue
Block a user