forked from wangjun7121/npp-task-list
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from thibmo/AboutDialog
New feature : About dialog
- Loading branch information
Showing
15 changed files
with
700 additions
and
72 deletions.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// This file is part of Notepad++ project | ||
// Copyright (C)2003 Don HO <[email protected]> | ||
// | ||
// This program is free software; you can redistribute it and/or | ||
// modify it under the terms of the GNU General Public License | ||
// as published by the Free Software Foundation; either | ||
// version 2 of the License, or (at your option) any later version. | ||
// | ||
// Note that the GPL places important restrictions on "derived works", yet | ||
// it does not provide a detailed definition of that term. To avoid | ||
// misunderstandings, we consider an application to constitute a | ||
// "derivative work" for the purpose of this license if it does any of the | ||
// following: | ||
// 1. Integrates source code from Notepad++. | ||
// 2. Integrates/includes/aggregates Notepad++ into a proprietary executable | ||
// installer, such as those produced by InstallShield. | ||
// 3. Links to a library or executes a program that does any of the above. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program; if not, write to the Free Software | ||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
|
||
// NOTE : Extremely cleaned out, if you need more go to: https://github.com/notepad-plus-plus/notepad-plus-plus/blob/master/PowerEditor/src/MISC/Common/Common.h | ||
|
||
#ifndef COMMON_INCLUDED | ||
#define COMMON_INCLUDED | ||
|
||
#include <string> | ||
#include <windows.h> | ||
|
||
typedef std::basic_string<TCHAR> generic_string; | ||
|
||
COLORREF getCtrlBgColor(HWND hWnd); | ||
|
||
#endif // COMMON_INCLUDED |
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
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,68 @@ | ||
// This file is part of Notepad++ project | ||
// Copyright (C)2003 Don HO <[email protected]> | ||
// | ||
// This program is free software; you can redistribute it and/or | ||
// modify it under the terms of the GNU General Public License | ||
// as published by the Free Software Foundation; either | ||
// version 2 of the License, or (at your option) any later version. | ||
// | ||
// Note that the GPL places important restrictions on "derived works", yet | ||
// it does not provide a detailed definition of that term. To avoid | ||
// misunderstandings, we consider an application to constitute a | ||
// "derivative work" for the purpose of this license if it does any of the | ||
// following: | ||
// 1. Integrates source code from Notepad++. | ||
// 2. Integrates/includes/aggregates Notepad++ into a proprietary executable | ||
// installer, such as those produced by InstallShield. | ||
// 3. Links to a library or executes a program that does any of the above. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program; if not, write to the Free Software | ||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
|
||
#ifndef URLCTRL_INCLUDED | ||
#define URLCTRL_INCLUDED | ||
|
||
#include "Window.h" | ||
#include "Common.h" | ||
|
||
class URLCtrl : public Window { | ||
public: | ||
URLCtrl() :_hfUnderlined(0), _hCursor(0), _msgDest(NULL), _cmdID(0), _oldproc(NULL), \ | ||
_linkColor(), _visitedColor(), _clicking(false), _URL(TEXT("")){}; | ||
|
||
void create(HWND itemHandle, TCHAR * link, COLORREF linkColor = RGB(0, 0, 255)); | ||
|
||
void create(HWND itemHandle, int cmd, HWND msgDest = NULL); | ||
|
||
void destroy(); | ||
|
||
private: | ||
void action(); | ||
|
||
protected: | ||
generic_string _URL; | ||
HFONT _hfUnderlined; | ||
HCURSOR _hCursor; | ||
|
||
HWND _msgDest; | ||
unsigned long _cmdID; | ||
|
||
WNDPROC _oldproc; | ||
COLORREF _linkColor; | ||
COLORREF _visitedColor; | ||
bool _clicking; | ||
|
||
static LRESULT CALLBACK URLCtrlProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam){ | ||
return ((URLCtrl *)(::GetWindowLongPtr(hwnd, GWLP_USERDATA)))->runProc(hwnd, Message, wParam, lParam); | ||
}; | ||
|
||
LRESULT runProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam); | ||
}; | ||
|
||
#endif //URLCTRL_INCLUDED |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,31 +1,77 @@ | ||
/* | ||
this file is part of notepad++ | ||
Copyright (C)2003 Don HO ( [email protected] ) | ||
|
||
This program is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU General Public License | ||
as published by the Free Software Foundation; either | ||
version 2 of the License, or (at your option) any later version. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
// Microsoft Visual C++ generated resource script. | ||
// | ||
#include "resource.h" | ||
#include <windows.h> | ||
///////////////////////////////////////////////////////////////////////////// | ||
// Neutral resources | ||
|
||
You should have received a copy of the GNU General Public License | ||
along with this program; if not, write to the Free Software | ||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
*/ | ||
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_NEU) | ||
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL | ||
#pragma code_page(1252) | ||
|
||
#include <windows.h> | ||
#include "resource.h" | ||
///////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Dialog | ||
// | ||
|
||
IDD_PLUGINGOLINE_DEMO DIALOGEX 0, 0, 137, 283 | ||
IDD_TODOLIST_DIALOG DIALOGEX 0, 0, 137, 283 | ||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | ||
EXSTYLE WS_EX_TOOLWINDOW | ||
CAPTION "Task List" | ||
FONT 8, "MS Sans Serif", 0, 0, 0x0 | ||
BEGIN | ||
LISTBOX ID_TODO_LIST,8,8,123,269, WS_VSCROLL | WS_TABSTOP | LBS_NOTIFY | ||
LISTBOX ID_TODO_LIST,8,8,123,269,WS_VSCROLL | WS_TABSTOP | ||
END | ||
|
||
IDD_ABOUT_DIALOG DIALOGEX 0, 0, 272, 138 | ||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_BORDER | WS_SYSMENU | ||
FONT 8, "MS Shell Dlg", 0, 0, 0x1 | ||
BEGIN | ||
DEFPUSHBUTTON "&Ok",1,110,120,50,14 | ||
CTEXT "Task List v1.0.4",IDC_ABOUT_TITLE,7,7,257,17,SS_CENTERIMAGE,WS_EX_DLGMODALFRAME | WS_EX_TRANSPARENT | ||
LTEXT "Url:",IDC_ABOUT_URL_PREFIX,12,34,27,9 | ||
LTEXT "https://github.com/Megabyteceer/npp-task-list",IDC_ABOUT_URL,39,34,220,9 | ||
LTEXT "Contributors:",IDC_ABOUT_CONTRIBUTORS,12,50,247,9 | ||
LTEXT "\t- blitowitz",IDC_ABOUT_CONTRIBUTOR1,12,61,247,9 | ||
LTEXT "\t- Megabyteceer",IDC_ABOUT_CONTRIBUTOR2,12,72,247,9 | ||
LTEXT "\t- chcg",IDC_ABOUT_CONTRIBUTOR3,12,83,247,9 | ||
LTEXT "\t- Thibmo",IDC_ABOUT_CONTRIBUTOR4,12,94,247,9 | ||
END | ||
|
||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
// | ||
// DESIGNINFO | ||
// | ||
|
||
#ifdef APSTUDIO_INVOKED | ||
GUIDELINES DESIGNINFO | ||
BEGIN | ||
IDD_TODOLIST_DIALOG, DIALOG | ||
BEGIN | ||
END | ||
|
||
IDD_ABOUT_DIALOG, DIALOG | ||
BEGIN | ||
LEFTMARGIN, 7 | ||
RIGHTMARGIN, 264 | ||
TOPMARGIN, 7 | ||
BOTTOMMARGIN, 134 | ||
END | ||
END | ||
#endif // APSTUDIO_INVOKED | ||
|
||
#endif // Neutral resources | ||
///////////////////////////////////////////////////////////////////////////// | ||
|
||
|
||
#ifndef APSTUDIO_INVOKED | ||
///////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Generated from the TEXTINCLUDE 3 resource. | ||
// | ||
|
||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
#endif // not APSTUDIO_INVOKED | ||
|
Oops, something went wrong.