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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
|
// GUI_Main_Easy_Box - WxWidgets GUI for MediaInfo
// Copyright (C) 2002-2012 MediaArea.net SARL, Info@MediaArea.net
//
// This program is free software: you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//---------------------------------------------------------------------------
#include "wx/wxprec.h"
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#include "GUI/WxWidgets/GUI_Main_Easy_Box.h"
#include "GUI/WxWidgets/GUI_Main_Easy.h"
#include "GUI/WxWidgets/GUI_Main_FileDrop.h"
#include "Common/Core.h"
#include <wx/choice.h>
#include <wx/statbox.h>
#include <wx/stattext.h>
#include <wx/button.h>
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
BEGIN_EVENT_TABLE(GUI_Main_Easy_Box, wxPanel)
//Button
EVT_BUTTON(26991, GUI_Main_Easy_Box::OnClick)
END_EVENT_TABLE()
//***************************************************************************
// Constructor/Destructor
//***************************************************************************
//---------------------------------------------------------------------------
GUI_Main_Easy_Box::GUI_Main_Easy_Box(Core* _C, GUI_Main_Easy* Parent, wxWindow* Left, wxWindow* Top, stream_t StreamKind, size_t StreamPos)
: wxPanel(Parent, 26991, wxPoint(0, 0), wxSize(Parent->GetClientSize().GetWidth()-0, Parent->GetClientSize().GetHeight()-0)),
GUI_Main_Easy_Box_Core(_C, Parent, StreamKind, StreamPos)
{
//Internal
GUI_Main_Easy_Box::Parent=Parent;
GUI_Main_Easy_Box::Left=Left;
GUI_Main_Easy_Box::Top=Top;
//Creation
Box=new wxStaticBox (this, 26991, wxEmptyString);
Text=new wxStaticText(this, 26991, wxEmptyString);
Tags=new wxStaticText(this, 26991, wxEmptyString);
Button=new wxButton (this, 26991, wxEmptyString);
//Drag and Drop
#if wxUSE_DRAG_AND_DROP && defined(__WXMAC__)
SetDropTarget(new FileDrop(_C));
Box->SetDropTarget(new FileDrop(_C));
Text->SetDropTarget(new FileDrop(_C));
Tags->SetDropTarget(new FileDrop(_C));
Button->SetDropTarget(new FileDrop(_C));
#endif //wxUSE_DRAG_AND_DROP
//Update
GUI_Resize();
GUI_Refresh();
}
//***************************************************************************
// Actions
//***************************************************************************
//---------------------------------------------------------------------------
void GUI_Main_Easy_Box::GUI_Refresh()
{
//Translation
Box->SetLabel(Box_Get().c_str());
//Info
Text->SetLabel(Text_Get().c_str());
Text->SetToolTip(ToolTip_Get().c_str());
Tags->SetLabel(Tags_Get().c_str());
if (Button_Show())
{
Button->SetLabel(Button_Get().c_str());
Button->Show();
}
}
//---------------------------------------------------------------------------
void GUI_Main_Easy_Box::GUI_Resize()
{
//Configuring
if (MustHide())
{
SetSize (Left?(Left->GetPosition().x+Left->GetSize().GetWidth()):2,
Top?(Top->GetPosition().y+Top->GetSize().GetHeight()):0,
0,
0);
Hide();
return;
}
//Calculating Parent data
int Parent_Width=(Parent->GetClientSize().GetWidth()-1)/(int)Boxes_Show_Get();
if (IsLastBox())
Parent_Width+=(Parent->GetClientSize().GetWidth()-1)%(int)Boxes_Show_Get();
const int Box_Boundary=3;
//Text
Text->SetSize (Box_Boundary,
Box->GetCharHeight(),
(Parent_Width-Box_Boundary*2-(Tags_Get().empty()?0:Box->GetCharWidth()))/(Tags_Get().empty()?1:2)-1,
Text->GetCharHeight());
Tags->SetSize (Text->GetPosition().x+Text->GetSize().GetWidth()+Box->GetCharWidth(),
Text->GetPosition().y,
Tags_Get().empty()?0:Text->GetSize().GetWidth(),
Text->GetSize().GetHeight());
int Text_Width=Text->GetSize().GetWidth();
Text->SetLabel(Text_Get().c_str());
Tags->SetLabel(Tags_Get().c_str());
Text->Wrap(Text_Width);
Tags->Wrap(Text_Width);
Text->SetSize (-1,
-1,
Text_Width,
Text->GetSize().GetHeight()>Text->GetCharHeight()*(int)Lines_Count_Get()*2?Text->GetCharHeight()*(int)Lines_Count_Get()*2:(unsigned int)-1);
Tags->SetSize (-1,
-1,
Text_Width,
Tags->GetSize().GetHeight()>Tags->GetCharHeight()*(int)Lines_Count_Get()*2?Text->GetCharHeight()*(int)Lines_Count_Get()*2:(unsigned int)-1);
//Button
Button->SetSize(Box_Boundary,
Text->GetPosition().y+(Text->GetSize().GetHeight()>Tags->GetSize().GetHeight()?Text->GetSize().GetHeight():Tags->GetSize().GetHeight()),
Parent_Width-Box_Boundary*2,
Button_Show()?(Button->GetBestSize().GetHeight()):0);
//Panel
Box->SetSize (0,
0,
Parent_Width-2,
Button->GetPosition().y+Button->GetSize().GetHeight()+Box_Boundary);
SetSize (Left?(Left->GetPosition().x+Left->GetSize().GetWidth()):1,
Top?(Top->GetPosition().y+Top->GetSize().GetHeight()):0,
Parent_Width,
Box->GetSize().GetHeight());
if (Button_Show())
Button->Show();
else
Button->Hide();
Show();
}
//---------------------------------------------------------------------------
void GUI_Main_Easy_Box::OnClick(wxCommandEvent&)
{
//Showing
//wxMessageBox(Button_Click().c_str(), _T("Should launch"), wxOK | wxICON_INFORMATION, this);
#if defined (_WINDOWS)
ShellExecute(NULL, _T("open"), Button_Click().c_str(), NULL, NULL, 0); //wxExecute(_T("cmd /C start ")+Button_Click());
#elif defined (_MACOS) || defined (_MACOSX)
wxExecute((_T("open ")+Button_Click()).c_str());
#else
wxExecute(_T("xdg-open ")+Button_Click());
#endif
}
|