~registry/dolphin-emu/triforce

« back to all changes in this revision

Viewing changes to Externals/wxWidgets3/include/wx/dcprint.h

  • Committer: Sérgio Benjamim
  • Date: 2015-02-13 05:54:40 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20150213055440-ey2rt3sjpy27km78
Dolphin Triforce branch from code.google, commit b957980 (4.0-315).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/////////////////////////////////////////////////////////////////////////////
 
2
// Name:        wx/dcprint.h
 
3
// Purpose:     wxPrinterDC base header
 
4
// Author:      Julian Smart
 
5
// Modified by:
 
6
// Created:
 
7
// Copyright:   (c) Julian Smart
 
8
// Licence:     wxWindows Licence
 
9
/////////////////////////////////////////////////////////////////////////////
 
10
 
 
11
#ifndef _WX_DCPRINT_H_BASE_
 
12
#define _WX_DCPRINT_H_BASE_
 
13
 
 
14
#include "wx/defs.h"
 
15
 
 
16
#if wxUSE_PRINTING_ARCHITECTURE
 
17
 
 
18
#include "wx/dc.h"
 
19
 
 
20
//-----------------------------------------------------------------------------
 
21
// wxPrinterDC
 
22
//-----------------------------------------------------------------------------
 
23
 
 
24
class WXDLLIMPEXP_CORE wxPrinterDC : public wxDC
 
25
{
 
26
public:
 
27
    wxPrinterDC();
 
28
    wxPrinterDC(const wxPrintData& data);
 
29
 
 
30
    wxRect GetPaperRect() const;
 
31
    int GetResolution() const;
 
32
 
 
33
protected:
 
34
    wxPrinterDC(wxDCImpl *impl) : wxDC(impl) { }
 
35
 
 
36
private:
 
37
    DECLARE_DYNAMIC_CLASS(wxPrinterDC)
 
38
};
 
39
 
 
40
#endif // wxUSE_PRINTING_ARCHITECTURE
 
41
 
 
42
#endif // _WX_DCPRINT_H_BASE_