PdfToolFrame.h 713 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
#pragma once
#include "dialogframe.h"
#include "UIListCommonDefine.hpp"
#include "LogManager.h"
#include "GlobalData.h"
#include <map>
 

namespace DuiLib
{
	class CPdfToolFrame :
		public CDialogFrame
	{
	public:
		CPdfToolFrame(HWND wnd);
		~CPdfToolFrame(void);
		HWND m_wnd;
		void SetPreButtonEnable(bool bFlag);
		void SetNextButtonEnable(bool bFlag);

	protected:
		virtual LPCTSTR GetWindowClassName() const { return _T("PdfToolFrame"); };
		virtual LPCTSTR GetFrameXml() const 
		{
			return _T("reader\\PdfToolFrame.xml");
		};
		virtual void Notify(TNotifyUI& msg);
		virtual void OnInit() ;
		virtual void OnLoad() ;
		virtual LRESULT HandleMessage(UINT uMsg, WPARAM wParam, LPARAM lParam);
	};

}