Fixed commented names (path, filename, and extension) of files in include/ and src/. Prepended the names in src/ with "src/" everywhere, while starting those in include/wx/ with "wx/". git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67254 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/////////////////////////////////////////////////////////////////////////////
 | 
						|
// Name:        wx/gtk/minifram.h
 | 
						|
// Purpose:     wxMiniFrame class
 | 
						|
// Author:      Robert Roebling
 | 
						|
// RCS-ID:      $Id$
 | 
						|
// Copyright:   (c) Robert Roebling
 | 
						|
// Licence:     wxWindows licence
 | 
						|
/////////////////////////////////////////////////////////////////////////////
 | 
						|
 | 
						|
#ifndef _WX_GTK_MINIFRAME_H_
 | 
						|
#define _WX_GTK_MINIFRAME_H_
 | 
						|
 | 
						|
#include "wx/bitmap.h"
 | 
						|
#include "wx/frame.h"
 | 
						|
 | 
						|
//-----------------------------------------------------------------------------
 | 
						|
// wxMiniFrame
 | 
						|
//-----------------------------------------------------------------------------
 | 
						|
 | 
						|
class WXDLLIMPEXP_CORE wxMiniFrame: public wxFrame
 | 
						|
{
 | 
						|
    DECLARE_DYNAMIC_CLASS(wxMiniFrame)
 | 
						|
 | 
						|
public:
 | 
						|
    wxMiniFrame() {}
 | 
						|
    wxMiniFrame(wxWindow *parent,
 | 
						|
            wxWindowID id,
 | 
						|
            const wxString& title,
 | 
						|
            const wxPoint& pos = wxDefaultPosition,
 | 
						|
            const wxSize& size = wxDefaultSize,
 | 
						|
            long style = wxCAPTION | wxRESIZE_BORDER,
 | 
						|
            const wxString& name = wxFrameNameStr)
 | 
						|
    {
 | 
						|
        Create(parent, id, title, pos, size, style, name);
 | 
						|
    }
 | 
						|
 | 
						|
    bool Create(wxWindow *parent,
 | 
						|
            wxWindowID id,
 | 
						|
            const wxString& title,
 | 
						|
            const wxPoint& pos = wxDefaultPosition,
 | 
						|
            const wxSize& size = wxDefaultSize,
 | 
						|
            long style = wxCAPTION | wxRESIZE_BORDER,
 | 
						|
            const wxString& name = wxFrameNameStr);
 | 
						|
 | 
						|
    virtual void SetTitle( const wxString &title );
 | 
						|
 | 
						|
protected:
 | 
						|
    virtual void DoSetSizeHints( int minW, int minH,
 | 
						|
                                 int maxW, int maxH,
 | 
						|
                                 int incW, int incH );
 | 
						|
    virtual void DoGetClientSize(int* width, int* height) const;
 | 
						|
 | 
						|
 // implementation
 | 
						|
public:
 | 
						|
    bool   m_isDragging;
 | 
						|
    int    m_oldX,m_oldY;
 | 
						|
    int    m_diffX,m_diffY;
 | 
						|
    wxBitmap  m_closeButton;
 | 
						|
    int m_miniEdge;
 | 
						|
    int m_miniTitle;
 | 
						|
};
 | 
						|
 | 
						|
#endif // _WX_GTK_MINIFRAME_H_
 |