]>
git.saurik.com Git - wxWidgets.git/blob - utils/screenshotgen/src/autocapture.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: autocapture.cpp
3 // Purpose: Implement wxCtrlMaskOut class
4 // Author: Utensil Candel (UtensilCandel@@gmail.com)
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
9 // For compilers that support precompilation, includes "wx/wx.h".
10 #include "wx/wxprec.h"
16 // for all others, include the necessary headers
21 #include <wx/filename.h>
23 #include "autocapture.h"
26 wxBitmap
Capture(int x
, int y
, int width
, int height
)
28 //Somehow wxScreenDC.Blit() doesn't work under Mac for now. Here is a trick.
31 //wxExecute(_T("screencapture -x ") + tempfile, wxEXEC_SYNC);
33 system("screencapture -x /tmp/wx_screen_capture.png");
39 fullscreen
= wxBitmap(_T("/tmp/wx_screen_capture.png"), wxBITMAP_TYPE_PNG
);
41 while(!fullscreen
.IsOk());
43 wxBitmap screenshot
= fullscreen
.GetSubBitmap(wxRect(x
,y
,width
,height
));
45 #else //Under other paltforms, take a real screenshot
47 //Create a DC for the whole screen area
50 //Create a Bitmap that will later on hold the screenshot image
51 //Note that the Bitmap must have a size big enough to hold the screenshot
52 //-1 means using the current default colour depth
53 wxBitmap
screenshot(width
, height
, -1);
55 //Create a memory DC that will be used for actually taking the screenshot
57 //Tell the memory DC to use our Bitmap
58 //all drawing action on the memory DC will go to the Bitmap now
59 memDC
.SelectObject(screenshot
);
60 //Blit (in this case copy) the actual screen on the memory DC
62 memDC
.Blit( 0, //Copy to this X coordinate
63 0, //Copy to this Y coordinate
64 width
, //Copy this width
65 height
, //Copy this height
66 &dcScreen
, //From where do we copy?
67 x
, //What's the X offset in the original DC?
68 y
//What's the Y offset in the original DC?
70 //Select the Bitmap out of the memory DC by selecting a new
71 //uninitialized Bitmap
72 memDC
.SelectObject(wxNullBitmap
);
73 #endif //#ifdef __WXMAC__
75 // wxMessageBox(_(""),_(""));
81 wxBitmap
Capture(wxRect rect
)
83 wxPoint origin
= rect
.GetPosition();
84 return Capture(origin
.x
, origin
.y
, rect
.GetWidth(), rect
.GetHeight());
87 void AutoCaptureMechanism::Save(wxBitmap screenshot
, wxString fileName
)
89 //Check if m_defaultDir already existed
90 if(!wxDirExists(m_dir
))
93 wxString fullFileName
= m_dir
+ wxFileName::GetPathSeparator() + fileName
;
95 //to prvent overwritten
96 while(wxFileName::FileExists(fullFileName
+ _T(".png"))) fullFileName
+= _T("_");
98 //Our Bitmap now has the screenshot, so let's save it as an png
99 //The filename itself is without extension.
100 screenshot
.SaveFile(fullFileName
+ _T(".png"), wxBITMAP_TYPE_PNG
);
103 wxRect
AutoCaptureMechanism::GetRect(wxWindow
* ctrl
, int flag
)
105 if(flag
& AJ_RegionAdjust
)
107 wxWindow
* parent
= ctrl
->GetParent();
108 wxSizer
* sizer
= parent
->GetSizer();
115 +---------+-----------+---------+
117 +---------+-----------+---------+
118 | label | ctrl | label |
119 +---------+-----------+---------+
121 +---------+-----------+---------+
124 m_grid
= new wxFlexGridSizer(3, 3, m_border
, m_border
);
128 for(int i
= 0; i
< 4; ++i
)
129 l
[i
] = new wxStaticText(parent
, wxID_ANY
, wxT(" "));
132 m_grid
->Add(new wxStaticText(parent
, wxID_ANY
, wxT(" ")));
134 m_grid
->Add(new wxStaticText(parent
, wxID_ANY
, wxT(" ")));
136 m_grid
->Add(new wxStaticText(parent
, wxID_ANY
, wxT(" ")));
138 m_grid
->Add(new wxStaticText(parent
, wxID_ANY
, wxT(" ")));
142 parent
->SetSizer(sizer
);
148 return wxRect(l
[0]->GetScreenRect().GetBottomRight(),
149 l
[3]->GetScreenRect().GetTopLeft());
152 else //Actually it won't get here working with the current guiframe.h/guiframe.cpp
154 return ctrl
->GetScreenRect().Inflate(m_border
);
159 return ctrl
->GetScreenRect().Inflate(m_border
);
163 void AutoCaptureMechanism::PutBack(wxWindow
* ctrl
)
165 m_grid
->Detach(ctrl
);
167 wxSizerItemList children
= m_grid
->GetChildren();
169 for(wxSizerItemList::iterator it
= children
.begin(); it
!= children
.end(); ++it
)
171 wxSizerItem
* item
= *it
;
172 if(item
->IsWindow()) delete (*it
)->GetWindow();
175 wxSizer
* sizer
= ctrl
->GetParent()->GetSizer();
176 sizer
->Detach(m_grid
);