├── README.md ├── imagepanel.cpp ├── imagepanel.h ├── res ├── vlc.ico └── vlc.png ├── wxVLC.cbp ├── wxVLC.depend ├── wxVLCApp.cpp ├── wxVLCApp.h ├── wxVLCMain.cpp ├── wxVLCMain.h ├── wx_pch.h └── wxsmith └── wxVLCframe.wxs /README.md: -------------------------------------------------------------------------------- 1 | # wxVLC 2 | 3 | About 4 | ----- 5 | 6 | wxVLC is a wxWidgets GUI media player that uses libVLC framework as its core multimedia engine. 7 | 8 | ![wxWidgets Logo](https://www.wxwidgets.org/assets/img/header-logo.png) 9 | 10 | wxWidgets allows you to write native-looking GUI applications for 11 | all the major desktop platforms and also helps with abstracting 12 | the differences in the non-GUI aspects between them. It is free 13 | for the use in both open source and commercial applications, comes 14 | with the full, easy to read and modify, source and extensive 15 | documentation and a collection of more than a hundred examples. 16 | You can learn more about wxWidgets at https://www.wxwidgets.org/ 17 | and read its documentation online at http://docs.wxwidgets.org/ 18 | 19 | 20 | Platforms 21 | --------- 22 | 23 | [![AppVeyor](https://img.shields.io/appveyor/ci/wxWidgets/wxWidgets/master.svg?label=Windows)](https://ci.appveyor.com/project/wxWidgets/wxwidgets) 24 | [![Travis](https://img.shields.io/travis/wxWidgets/wxWidgets/master.svg?label=Linux)](https://travis-ci.org/wxWidgets/wxWidgets) 25 | 26 | wxVLC currently supports the following primary platforms: 27 | 28 | - Windows XP, Vista, 7, 8 and 10 (32/64 bits). 29 | - Most Unix variants using the GTK+ toolkit (version 2.6 or newer or 3.x). 30 | - OS X (10.7 or newer) using Cocoa (32/64 bits). 31 | 32 | Most popular C++ compilers are supported including but not limited to: 33 | 34 | - Microsoft Visual C++ 2003 or later (up to 2017). 35 | - g++ 3.4 or later, including MinGW/MinGW-64/TDM under Windows. 36 | - Clang under OS X and Linux. 37 | - Intel icc compiler. 38 | - Oracle (ex-Sun) aCC. 39 | 40 | 41 | Licence 42 | ------- 43 | 44 | [wxWidgets licence](https://github.com/wxWidgets/wxWidgets/blob/master/docs/licence.txt) 45 | is a modified version of LGPL explicitly allowing not distributing the sources 46 | of an application using the library even in the case of static linking. 47 | 48 | 49 | Building 50 | -------- 51 | 52 | Code::Blocks project is provided to build it. 53 | 54 | TODO: Add CMake build system. 55 | 56 | 57 | Further information 58 | ------------------- 59 | 60 | We gladly welcome your contributions. 61 | 62 | Have fun! 63 | 64 | The wxVLC Team. 65 | -------------------------------------------------------------------------------- /imagepanel.cpp: -------------------------------------------------------------------------------- 1 | /*************************************************************** 2 | * Name: imagepanel.cpp 3 | * Purpose: Source file for wxImagePanel Class 4 | * Author: Tomay (tomay3000@gmail.com) 5 | * Created: 2018-05-31 6 | * Copyright: (c) Tomay 7 | * License: wxWindows licence 8 | **************************************************************/ 9 | 10 | #ifdef WX_PRECOMP 11 | #include "wx_pch.h" 12 | #endif 13 | 14 | #ifdef __BORLANDC__ 15 | #pragma hdrstop 16 | #endif //__BORLANDC__ 17 | 18 | #include "imagepanel.h" 19 | 20 | /*BEGIN_EVENT_TABLE(wxImagePanel, wxPanel) 21 | // Catch paint events 22 | EVT_PAINT(wxImagePanel::PaintEvent) 23 | //Size event 24 | EVT_SIZE(wxImagePanel::OnSize) 25 | END_EVENT_TABLE()*/ 26 | 27 | //wxIMPLEMENT_DYNAMIC_CLASS_XTI(wxImagePanel, wxPanel, "imagepanel.h"); 28 | 29 | void wxImagePanel::Init() 30 | { 31 | m_image = wxNullImage; 32 | m_bStretch = false; 33 | m_bCenterImage = false; 34 | 35 | //Connect(wxEVT_PAINT, wxPaintEventHandler(wxImagePanel::PaintEvent), NULL, this); 36 | Bind(wxEVT_PAINT, &wxImagePanel::PaintEvent, this); 37 | //Connect(wxEVT_SIZE, wxSizeEventHandler(wxImagePanel::OnSize), NULL, this); 38 | Bind(wxEVT_SIZE, &wxImagePanel::OnSize, this); 39 | 40 | // Flicker-free drawing requires this 41 | SetBackgroundStyle(wxBG_STYLE_PAINT); 42 | } 43 | 44 | wxImagePanel::wxImagePanel() : wxPanel() 45 | { 46 | Init(); 47 | } 48 | 49 | wxImagePanel::wxImagePanel(wxWindow *parent, 50 | wxWindowID winid /*= wxID_ANY*/, 51 | const wxPoint &pos /*= wxDefaultPosition*/, 52 | const wxSize &size /*= wxDefaultSize*/, 53 | long style /*= wxTAB_TRAVERSAL | wxNO_BORDER | wxCLIP_CHILDREN*/, 54 | const wxString &name /*= _T("ImagePanel")*/) : 55 | wxPanel(parent, winid, pos, size, style, name) 56 | { 57 | Init(); 58 | } 59 | 60 | wxImagePanel::wxImagePanel(wxWindow *parent, 61 | const wxString &file, 62 | wxBitmapType type /*= wxBITMAP_TYPE_ANY*/) : 63 | wxPanel(parent) 64 | { 65 | Init(); 66 | 67 | // Load the file... ideally add a check to see if loading was successful 68 | m_image.LoadFile(file, type); 69 | } 70 | 71 | wxImagePanel::~wxImagePanel() 72 | { 73 | //Disconnect(wxEVT_PAINT, wxPaintEventHandler(wxImagePanel::PaintEvent), NULL, this); 74 | Unbind(wxEVT_PAINT, &wxImagePanel::PaintEvent, this); 75 | //Disconnect(wxEVT_SIZE, wxSizeEventHandler(wxImagePanel::OnSize), NULL, this); 76 | Unbind(wxEVT_SIZE, &wxImagePanel::OnSize, this); 77 | } 78 | 79 | void wxImagePanel::LoadFile(const wxString &file, wxBitmapType type /*= wxBITMAP_TYPE_ANY*/) 80 | { 81 | // Load the file... ideally add a check to see if loading was successful 82 | m_image.LoadFile(file, type); 83 | } 84 | 85 | void wxImagePanel::LoadFile(wxInputStream &stream, wxBitmapType type /*= wxBITMAP_TYPE_ANY*/) 86 | { 87 | // Load the file... ideally add a check to see if loading was successful 88 | m_image.LoadFile(stream, type); 89 | } 90 | 91 | /* Called by the system of wxWidgets when the panel needs 92 | to be redrawn. You can also trigger this call by calling Refresh()/Update(). */ 93 | void wxImagePanel::PaintEvent(wxPaintEvent &WXUNUSED(event)) 94 | { 95 | // Depending on your system you may need to look at double-buffered dcs 96 | wxBufferedPaintDC bpdc(this); 97 | Render(bpdc); 98 | } 99 | 100 | /* Alternatively, you can use a clientDC to paint on the panel at any time. 101 | Using this generally does not free you from catching paint events, 102 | since it is possible that e.g. the window manager throws away your drawing 103 | when the window comes to the background, and expects you will redraw it 104 | when the window comes back (by sending a paint event). */ 105 | void wxImagePanel::PaintNow() 106 | { 107 | // Depending on your system you may need to look at double-buffered dcs 108 | wxClientDC dc(this); 109 | wxBufferedDC bdc(&dc); 110 | Render(bdc); 111 | } 112 | 113 | /* Here we do the actual rendering. I put it in a separate method so that it 114 | can work no matter what type of DC (e.g. wxPaintDC or wxClientDC) is used. */ 115 | void wxImagePanel::Render(wxDC &dc) 116 | { 117 | if (!m_image.IsOk()) 118 | return; 119 | 120 | int panelWidth, panelHeight; 121 | GetClientSize(&panelWidth, &panelHeight); 122 | wxPoint pos; 123 | wxImage image = m_image; 124 | wxBitmap bitmap; 125 | 126 | // Fill the dc with the background colour 127 | dc.SetBackground(GetBackgroundColour()); 128 | dc.Clear(); 129 | 130 | // Should we stretch the image? 131 | if (m_bStretch) 132 | { 133 | // Make sure we do not attempt to create a bitmap 134 | // with invalid size (width and/or height < 1) 135 | if (panelWidth < 1) 136 | panelWidth = 1; 137 | 138 | if (panelHeight < 1) 139 | panelHeight = 1; 140 | 141 | if (image.IsOk()) 142 | image.Rescale(panelWidth, panelHeight); 143 | } 144 | // Should we center the image? 145 | else if (m_bCenterImage) 146 | { 147 | pos.x = (panelWidth - image.GetWidth()) / 2; 148 | pos.y = (panelHeight - image.GetHeight()) / 2; 149 | } 150 | 151 | if (image.IsOk()) 152 | { 153 | bitmap = wxBitmap(image); 154 | dc.DrawBitmap(bitmap, pos.x, pos.y, false); 155 | } 156 | } 157 | 158 | /* Here we call refresh to tell the panel to draw itself again. 159 | So when the user resizes the image panel the image should be resized too. */ 160 | void wxImagePanel::OnSize(wxSizeEvent& event) 161 | { 162 | Refresh(); 163 | 164 | //skip the event. 165 | event.Skip(); 166 | } 167 | -------------------------------------------------------------------------------- /imagepanel.h: -------------------------------------------------------------------------------- 1 | /*************************************************************** 2 | * Name: imagepanel.h 3 | * Purpose: Header file for wxImagePanel Class 4 | * Author: Tomay (tomay3000@gmail.com) 5 | * Created: 2018-05-31 6 | * Copyright: (c) Tomay 7 | * License: wxWindows licence 8 | **************************************************************/ 9 | 10 | #ifndef IMAGEPANEL_H 11 | #define IMAGEPANEL_H 12 | 13 | #include 14 | #include 15 | #include 16 | #include 17 | #include 18 | 19 | class wxImagePanel : public wxPanel 20 | { 21 | protected: 22 | void Init(); 23 | 24 | public: 25 | wxImagePanel(); 26 | 27 | wxImagePanel(wxWindow *parent, 28 | wxWindowID winid = wxID_ANY, 29 | const wxPoint &pos = wxDefaultPosition, 30 | const wxSize &size = wxDefaultSize, 31 | long style = wxTAB_TRAVERSAL | wxNO_BORDER | wxCLIP_CHILDREN, 32 | const wxString &name = _T("ImagePanel")); 33 | 34 | wxImagePanel(wxWindow *parent, const wxString &file, wxBitmapType type = wxBITMAP_TYPE_ANY); 35 | 36 | virtual ~wxImagePanel(); 37 | 38 | void LoadFile(const wxString &file, wxBitmapType type = wxBITMAP_TYPE_ANY); 39 | void LoadFile(wxInputStream &stream, wxBitmapType type = wxBITMAP_TYPE_ANY); 40 | void PaintEvent(wxPaintEvent &event); 41 | void PaintNow(); 42 | void Render(wxDC &dc); 43 | void OnSize(wxSizeEvent &event); 44 | 45 | inline void SetImage(wxImage &image) 46 | { 47 | m_image = image; 48 | Refresh(); 49 | } 50 | 51 | inline void SetNullImage() 52 | { 53 | SetImage(wxNullImage); 54 | } 55 | 56 | inline wxImage GetImage(void) const 57 | { 58 | return m_image; 59 | } 60 | 61 | inline void SetStretch(bool bStretch) 62 | { 63 | m_bStretch = bStretch; 64 | Refresh(); 65 | } 66 | 67 | inline void StretchImage() 68 | { 69 | SetStretch(true); 70 | } 71 | 72 | inline bool GetStretch(void) const 73 | { 74 | return m_bStretch; 75 | } 76 | 77 | inline void SetCenterImage(bool bCenterImage) 78 | { 79 | m_bCenterImage = bCenterImage; 80 | Refresh(); 81 | } 82 | 83 | inline void CenterImage() 84 | { 85 | return SetCenterImage(true); 86 | } 87 | 88 | inline bool GetCenterImage(void) const 89 | { 90 | return m_bCenterImage; 91 | } 92 | 93 | protected: 94 | wxImage m_image; 95 | bool m_bStretch; 96 | bool m_bCenterImage; 97 | 98 | //DECLARE_EVENT_TABLE() 99 | 100 | /*private: 101 | wxDECLARE_DYNAMIC_CLASS_NO_COPY(wxImagePanel);*/ 102 | }; 103 | 104 | #endif // IMAGEPANEL_H_INCLUDED 105 | -------------------------------------------------------------------------------- /res/vlc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomay3000/wxVLC/837b607735be2ecdadc7c2fba4284198d35b88a0/res/vlc.ico -------------------------------------------------------------------------------- /res/vlc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomay3000/wxVLC/837b607735be2ecdadc7c2fba4284198d35b88a0/res/vlc.png -------------------------------------------------------------------------------- /wxVLC.cbp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 74 | 75 | -------------------------------------------------------------------------------- /wxVLC.depend: -------------------------------------------------------------------------------- 1 | # depslib dependency file v1.0 2 | 1529363482 source:/home/tomay/Desktop/Projects/wxVLC/wx_pch.h 3 | 4 | 5 | 6 | 1519163622 /usr/include/wx-3.1-unofficial/wx/wxprec.h 7 | "wx/defs.h" 8 | "wx/chartype.h" 9 | "wx/msw/wrapwin.h" 10 | "wx/msw/private.h" 11 | "wx/msw/wrapcctl.h" 12 | "wx/msw/wrapcdlg.h" 13 | "wx/msw/missing.h" 14 | "wx/wx.h" 15 | 16 | 1519163621 /usr/include/wx-3.1-unofficial/wx/defs.h 17 | "wx/msw/winundef.h" 18 | "wx/platform.h" 19 | "wx/version.h" 20 | "wx/dlimpexp.h" 21 | 22 | "wx/types.h" 23 | "wx/debug.h" 24 | "wx/windowid.h" 25 | 26 | "wx/qt/defs.h" 27 | "wx/features.h" 28 | 29 | 1519163621 /usr/include/wx-3.1-unofficial/wx/platform.h 30 | 31 | 32 | 33 | "wx/android/config_android.h" 34 | "wx/compiler.h" 35 | "wx/setup.h" 36 | "wx/msw/libraries.h" 37 | "wx/msw/gccpriv.h" 38 | 39 | 40 | "wx/chkconf.h" 41 | 42 | 1519163621 /usr/include/wx-3.1-unofficial/wx/compiler.h 43 | 44 | 1519209303 /usr/lib/x86_64-linux-gnu/wx/include/gtk3-unicode-3.1-unofficial3/wx/setup.h 45 | 46 | 1519163621 /usr/include/wx-3.1-unofficial/wx/chkconf.h 47 | "wx/msw/chkconf.h" 48 | "wx/gtk/chkconf.h" 49 | "wx/gtk/chkconf.h" 50 | "wx/osx/chkconf.h" 51 | "wx/dfb/chkconf.h" 52 | "wx/motif/chkconf.h" 53 | "wx/x11/chkconf.h" 54 | "wx/android/chkconf.h" 55 | "wx/unix/chkconf.h" 56 | "wx/univ/chkconf.h" 57 | 58 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/chkconf.h 59 | 60 | 1519163622 /usr/include/wx-3.1-unofficial/wx/unix/chkconf.h 61 | 62 | 1519163622 /usr/include/wx-3.1-unofficial/wx/version.h 63 | "wx/cpp.h" 64 | 65 | 1519163621 /usr/include/wx-3.1-unofficial/wx/cpp.h 66 | "wx/compiler.h" 67 | 68 | 1519163621 /usr/include/wx-3.1-unofficial/wx/dlimpexp.h 69 | 70 | 1519163622 /usr/include/wx-3.1-unofficial/wx/types.h 71 | "wx/platform.h" 72 | 73 | 74 | 75 | 1519163621 /usr/include/wx-3.1-unofficial/wx/debug.h 76 | 77 | 78 | "wx/chartype.h" 79 | "wx/cpp.h" 80 | "wx/dlimpexp.h" 81 | 82 | 1519163621 /usr/include/wx-3.1-unofficial/wx/chartype.h 83 | "wx/types.h" 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 1519163623 /usr/include/wx-3.1-unofficial/wx/windowid.h 97 | 98 | 1519163621 /usr/include/wx-3.1-unofficial/wx/features.h 99 | 100 | 1519163622 /usr/include/wx-3.1-unofficial/wx/wx.h 101 | "wx/defs.h" 102 | "wx/object.h" 103 | "wx/dynarray.h" 104 | "wx/list.h" 105 | "wx/hash.h" 106 | "wx/string.h" 107 | "wx/hashmap.h" 108 | "wx/arrstr.h" 109 | "wx/intl.h" 110 | "wx/log.h" 111 | "wx/event.h" 112 | "wx/app.h" 113 | "wx/utils.h" 114 | "wx/stream.h" 115 | "wx/memory.h" 116 | "wx/math.h" 117 | "wx/stopwatch.h" 118 | "wx/timer.h" 119 | "wx/module.h" 120 | "wx/wxcrt.h" 121 | "wx/wxcrtvararg.h" 122 | "wx/window.h" 123 | "wx/containr.h" 124 | "wx/panel.h" 125 | "wx/toplevel.h" 126 | "wx/frame.h" 127 | "wx/gdicmn.h" 128 | "wx/gdiobj.h" 129 | "wx/region.h" 130 | "wx/bitmap.h" 131 | "wx/image.h" 132 | "wx/colour.h" 133 | "wx/font.h" 134 | "wx/dc.h" 135 | "wx/dcclient.h" 136 | "wx/dcmemory.h" 137 | "wx/dcprint.h" 138 | "wx/dcscreen.h" 139 | "wx/button.h" 140 | "wx/menuitem.h" 141 | "wx/menu.h" 142 | "wx/pen.h" 143 | "wx/brush.h" 144 | "wx/palette.h" 145 | "wx/icon.h" 146 | "wx/cursor.h" 147 | "wx/dialog.h" 148 | "wx/settings.h" 149 | "wx/msgdlg.h" 150 | "wx/dataobj.h" 151 | "wx/control.h" 152 | "wx/ctrlsub.h" 153 | "wx/bmpbuttn.h" 154 | "wx/checkbox.h" 155 | "wx/checklst.h" 156 | "wx/choice.h" 157 | "wx/scrolbar.h" 158 | "wx/stattext.h" 159 | "wx/statbmp.h" 160 | "wx/statbox.h" 161 | "wx/listbox.h" 162 | "wx/radiobox.h" 163 | "wx/radiobut.h" 164 | "wx/textctrl.h" 165 | "wx/slider.h" 166 | "wx/gauge.h" 167 | "wx/scrolwin.h" 168 | "wx/dirdlg.h" 169 | "wx/toolbar.h" 170 | "wx/combobox.h" 171 | "wx/layout.h" 172 | "wx/sizer.h" 173 | "wx/statusbr.h" 174 | "wx/choicdlg.h" 175 | "wx/textdlg.h" 176 | "wx/filedlg.h" 177 | "wx/mdi.h" 178 | "wx/validate.h" 179 | "wx/valtext.h" 180 | 181 | 1519163621 /usr/include/wx-3.1-unofficial/wx/object.h 182 | "wx/memory.h" 183 | "wx/xti.h" 184 | "wx/rtti.h" 185 | "wx/xti2.h" 186 | "wx/msw/msvcrt.h" 187 | 188 | 1519163621 /usr/include/wx-3.1-unofficial/wx/memory.h 189 | "wx/defs.h" 190 | "wx/string.h" 191 | "wx/msgout.h" 192 | 193 | 194 | 1519163621 /usr/include/wx-3.1-unofficial/wx/string.h 195 | "wx/defs.h" 196 | 197 | 198 | 199 | 200 | 201 | 202 | "wx/wxcrtbase.h" 203 | "wx/strvararg.h" 204 | "wx/buffer.h" 205 | "wx/strconv.h" 206 | "wx/stringimpl.h" 207 | "wx/stringops.h" 208 | "wx/unichar.h" 209 | "wx/tls.h" 210 | 211 | "wx/iosfwrap.h" 212 | "wx/crt.h" 213 | 214 | 1519163622 /usr/include/wx-3.1-unofficial/wx/wxcrtbase.h 215 | "wx/chartype.h" 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 1519163622 /usr/include/wx-3.1-unofficial/wx/strvararg.h 224 | "wx/platform.h" 225 | "wx/cpp.h" 226 | "wx/chartype.h" 227 | "wx/strconv.h" 228 | "wx/buffer.h" 229 | "wx/unichar.h" 230 | 231 | 232 | 233 | "wx/stringimpl.h" 234 | 235 | 1519163621 /usr/include/wx-3.1-unofficial/wx/strconv.h 236 | "wx/defs.h" 237 | "wx/chartype.h" 238 | "wx/buffer.h" 239 | 240 | "wx/fontenc.h" 241 | 242 | 1519163621 /usr/include/wx-3.1-unofficial/wx/buffer.h 243 | "wx/defs.h" 244 | "wx/wxcrtbase.h" 245 | 246 | 247 | 1519163621 /usr/include/wx-3.1-unofficial/wx/fontenc.h 248 | 249 | 1519163622 /usr/include/wx-3.1-unofficial/wx/unichar.h 250 | "wx/defs.h" 251 | "wx/chartype.h" 252 | "wx/stringimpl.h" 253 | 254 | 255 | 1519163622 /usr/include/wx-3.1-unofficial/wx/stringimpl.h 256 | "wx/defs.h" 257 | "wx/chartype.h" 258 | "wx/wxcrtbase.h" 259 | 260 | "wx/beforestd.h" 261 | 262 | "wx/afterstd.h" 263 | 264 | 1519163621 /usr/include/wx-3.1-unofficial/wx/beforestd.h 265 | 266 | 1519163620 /usr/include/wx-3.1-unofficial/wx/afterstd.h 267 | "wx/msw/winundef.h" 268 | 269 | 1519163622 /usr/include/wx-3.1-unofficial/wx/stringops.h 270 | "wx/chartype.h" 271 | "wx/stringimpl.h" 272 | "wx/unichar.h" 273 | "wx/buffer.h" 274 | 275 | 1519163622 /usr/include/wx-3.1-unofficial/wx/tls.h 276 | "wx/defs.h" 277 | "wx/msw/tls.h" 278 | "wx/unix/tls.h" 279 | 280 | 281 | 1519163622 /usr/include/wx-3.1-unofficial/wx/unix/tls.h 282 | 283 | 284 | 1519163621 /usr/include/wx-3.1-unofficial/wx/iosfwrap.h 285 | 286 | 287 | "wx/msw/winundef.h" 288 | 289 | 1519163621 /usr/include/wx-3.1-unofficial/wx/crt.h 290 | "wx/defs.h" 291 | "wx/chartype.h" 292 | "wx/wxcrt.h" 293 | "wx/wxcrtvararg.h" 294 | 295 | 1519163622 /usr/include/wx-3.1-unofficial/wx/wxcrt.h 296 | "wx/wxcrtbase.h" 297 | "wx/string.h" 298 | 299 | 300 | 1519163622 /usr/include/wx-3.1-unofficial/wx/wxcrtvararg.h 301 | "wx/wxcrt.h" 302 | "wx/strvararg.h" 303 | "wx/string.h" 304 | 305 | 306 | 1519163621 /usr/include/wx-3.1-unofficial/wx/msgout.h 307 | "wx/defs.h" 308 | "wx/chartype.h" 309 | "wx/strvararg.h" 310 | 311 | 1519163622 /usr/include/wx-3.1-unofficial/wx/xti.h 312 | "wx/defs.h" 313 | "wx/xtitypes.h" 314 | "wx/xtihandler.h" 315 | 316 | 1519163622 /usr/include/wx-3.1-unofficial/wx/xtitypes.h 317 | "wx/defs.h" 318 | "wx/string.h" 319 | "wx/hashmap.h" 320 | "wx/arrstr.h" 321 | "wx/flags.h" 322 | "wx/intl.h" 323 | "wx/log.h" 324 | 325 | 326 | 1519163621 /usr/include/wx-3.1-unofficial/wx/hashmap.h 327 | "wx/string.h" 328 | "wx/wxcrt.h" 329 | 330 | 331 | 332 | 333 | 334 | 335 | 1519163620 /usr/include/wx-3.1-unofficial/wx/arrstr.h 336 | "wx/defs.h" 337 | "wx/string.h" 338 | 339 | "wx/dynarray.h" 340 | "wx/beforestd.h" 341 | 342 | "wx/afterstd.h" 343 | 344 | 1519163621 /usr/include/wx-3.1-unofficial/wx/dynarray.h 345 | "wx/defs.h" 346 | "wx/beforestd.h" 347 | 348 | 349 | "wx/afterstd.h" 350 | 351 | 1519163621 /usr/include/wx-3.1-unofficial/wx/flags.h 352 | 353 | 1519163621 /usr/include/wx-3.1-unofficial/wx/intl.h 354 | "wx/defs.h" 355 | "wx/string.h" 356 | "wx/translation.h" 357 | "wx/fontenc.h" 358 | "wx/language.h" 359 | 360 | 1519163622 /usr/include/wx-3.1-unofficial/wx/translation.h 361 | "wx/defs.h" 362 | "wx/string.h" 363 | "wx/buffer.h" 364 | "wx/language.h" 365 | "wx/hashmap.h" 366 | "wx/strconv.h" 367 | "wx/scopedptr.h" 368 | 369 | 1519163621 /usr/include/wx-3.1-unofficial/wx/language.h 370 | "wx/defs.h" 371 | 372 | 1519163621 /usr/include/wx-3.1-unofficial/wx/scopedptr.h 373 | "wx/defs.h" 374 | "wx/checkeddelete.h" 375 | 376 | 1519163621 /usr/include/wx-3.1-unofficial/wx/checkeddelete.h 377 | "wx/cpp.h" 378 | 379 | 1519163621 /usr/include/wx-3.1-unofficial/wx/log.h 380 | "wx/defs.h" 381 | "wx/cpp.h" 382 | "wx/string.h" 383 | "wx/strvararg.h" 384 | "wx/arrstr.h" 385 | 386 | "wx/dynarray.h" 387 | "wx/hashmap.h" 388 | "wx/msgout.h" 389 | "wx/thread.h" 390 | "wx/iosfwrap.h" 391 | "wx/generic/logg.h" 392 | 393 | 1519163622 /usr/include/wx-3.1-unofficial/wx/thread.h 394 | "wx/defs.h" 395 | 396 | 1519163622 /usr/include/wx-3.1-unofficial/wx/generic/logg.h 397 | 398 | 1519163622 /usr/include/wx-3.1-unofficial/wx/xtihandler.h 399 | "wx/defs.h" 400 | "wx/xti.h" 401 | 402 | 1519163621 /usr/include/wx-3.1-unofficial/wx/rtti.h 403 | "wx/memory.h" 404 | "wx/flags.h" 405 | 406 | 1519163622 /usr/include/wx-3.1-unofficial/wx/xti2.h 407 | "wx/xtiprop.h" 408 | "wx/xtictor.h" 409 | 410 | 1519163622 /usr/include/wx-3.1-unofficial/wx/xtiprop.h 411 | "wx/defs.h" 412 | "wx/xti.h" 413 | "wx/any.h" 414 | 415 | 1519163620 /usr/include/wx-3.1-unofficial/wx/any.h 416 | "wx/defs.h" 417 | 418 | "wx/string.h" 419 | "wx/meta/if.h" 420 | "wx/typeinfo.h" 421 | "wx/list.h" 422 | "wx/datetime.h" 423 | "wx/variant.h" 424 | 425 | 1519163622 /usr/include/wx-3.1-unofficial/wx/meta/if.h 426 | "wx/defs.h" 427 | 428 | 1519163622 /usr/include/wx-3.1-unofficial/wx/typeinfo.h 429 | "wx/defs.h" 430 | 431 | 432 | 433 | 1519163621 /usr/include/wx-3.1-unofficial/wx/list.h 434 | "wx/defs.h" 435 | "wx/object.h" 436 | "wx/string.h" 437 | "wx/vector.h" 438 | "wx/beforestd.h" 439 | 440 | 441 | 442 | "wx/afterstd.h" 443 | 444 | 1519163622 /usr/include/wx-3.1-unofficial/wx/vector.h 445 | "wx/defs.h" 446 | 447 | 448 | "wx/scopeguard.h" 449 | "wx/meta/movable.h" 450 | "wx/meta/if.h" 451 | "wx/beforestd.h" 452 | 453 | "wx/afterstd.h" 454 | 455 | 1519163624 /usr/include/wx-3.1-unofficial/wx/scopeguard.h 456 | "wx/defs.h" 457 | "wx/except.h" 458 | 459 | 1519163621 /usr/include/wx-3.1-unofficial/wx/except.h 460 | "wx/defs.h" 461 | 462 | 1519163622 /usr/include/wx-3.1-unofficial/wx/meta/movable.h 463 | "wx/meta/pod.h" 464 | "wx/string.h" 465 | 466 | 1519163622 /usr/include/wx-3.1-unofficial/wx/meta/pod.h 467 | "wx/defs.h" 468 | 469 | 1519163621 /usr/include/wx-3.1-unofficial/wx/datetime.h 470 | "wx/defs.h" 471 | 472 | 473 | "wx/longlong.h" 474 | "wx/anystr.h" 475 | "wx/dynarray.h" 476 | 477 | 1519163621 /usr/include/wx-3.1-unofficial/wx/longlong.h 478 | "wx/defs.h" 479 | "wx/string.h" 480 | 481 | "wx/iosfwrap.h" 482 | 483 | "wx/strvararg.h" 484 | 485 | 1519163620 /usr/include/wx-3.1-unofficial/wx/anystr.h 486 | "wx/string.h" 487 | 488 | 1519163622 /usr/include/wx-3.1-unofficial/wx/variant.h 489 | "wx/defs.h" 490 | "wx/object.h" 491 | "wx/string.h" 492 | "wx/arrstr.h" 493 | "wx/list.h" 494 | "wx/cpp.h" 495 | "wx/longlong.h" 496 | "wx/datetime.h" 497 | "wx/iosfwrap.h" 498 | "wx/any.h" 499 | 500 | 1519163622 /usr/include/wx-3.1-unofficial/wx/xtictor.h 501 | "wx/defs.h" 502 | "wx/xti.h" 503 | 504 | 1519163621 /usr/include/wx-3.1-unofficial/wx/hash.h 505 | "wx/defs.h" 506 | "wx/string.h" 507 | "wx/object.h" 508 | 509 | 1519163621 /usr/include/wx-3.1-unofficial/wx/event.h 510 | "wx/defs.h" 511 | "wx/cpp.h" 512 | "wx/object.h" 513 | "wx/clntdata.h" 514 | "wx/gdicmn.h" 515 | "wx/cursor.h" 516 | "wx/mousestate.h" 517 | "wx/dynarray.h" 518 | "wx/thread.h" 519 | "wx/tracker.h" 520 | "wx/typeinfo.h" 521 | "wx/any.h" 522 | "wx/vector.h" 523 | "wx/meta/convertible.h" 524 | "wx/meta/removeref.h" 525 | 526 | 1519163621 /usr/include/wx-3.1-unofficial/wx/clntdata.h 527 | "wx/defs.h" 528 | "wx/string.h" 529 | "wx/hashmap.h" 530 | 531 | 1519163622 /usr/include/wx-3.1-unofficial/wx/gdicmn.h 532 | "wx/defs.h" 533 | "wx/list.h" 534 | "wx/string.h" 535 | "wx/fontenc.h" 536 | "wx/hashmap.h" 537 | "wx/math.h" 538 | 539 | 1519163621 /usr/include/wx-3.1-unofficial/wx/math.h 540 | "wx/defs.h" 541 | 542 | 543 | 544 | 545 | 546 | 1519163622 /usr/include/wx-3.1-unofficial/wx/cursor.h 547 | "wx/gdiobj.h" 548 | "wx/gdicmn.h" 549 | "wx/msw/gdiimage.h" 550 | "wx/msw/cursor.h" 551 | "wx/motif/cursor.h" 552 | "wx/gtk/cursor.h" 553 | "wx/gtk1/cursor.h" 554 | "wx/x11/cursor.h" 555 | "wx/dfb/cursor.h" 556 | "wx/osx/cursor.h" 557 | "wx/qt/cursor.h" 558 | "wx/utils.h" 559 | 560 | 1519163623 /usr/include/wx-3.1-unofficial/wx/gdiobj.h 561 | "wx/object.h" 562 | 563 | 1519163624 /usr/include/wx-3.1-unofficial/wx/gtk/cursor.h 564 | 565 | 1519163622 /usr/include/wx-3.1-unofficial/wx/utils.h 566 | "wx/object.h" 567 | "wx/list.h" 568 | "wx/filefn.h" 569 | "wx/hashmap.h" 570 | "wx/versioninfo.h" 571 | "wx/meta/implicitconversion.h" 572 | "wx/gdicmn.h" 573 | "wx/mousestate.h" 574 | "wx/longlong.h" 575 | "wx/platinfo.h" 576 | 577 | 578 | 579 | 580 | 1519163621 /usr/include/wx-3.1-unofficial/wx/filefn.h 581 | "wx/list.h" 582 | "wx/arrstr.h" 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 1519163622 /usr/include/wx-3.1-unofficial/wx/versioninfo.h 596 | "wx/string.h" 597 | 598 | 1519163622 /usr/include/wx-3.1-unofficial/wx/meta/implicitconversion.h 599 | "wx/defs.h" 600 | "wx/meta/if.h" 601 | 602 | 1519163621 /usr/include/wx-3.1-unofficial/wx/mousestate.h 603 | "wx/gdicmn.h" 604 | "wx/kbdstate.h" 605 | 606 | 1519163621 /usr/include/wx-3.1-unofficial/wx/kbdstate.h 607 | "wx/defs.h" 608 | 609 | 1519163621 /usr/include/wx-3.1-unofficial/wx/platinfo.h 610 | "wx/string.h" 611 | 612 | 1519163622 /usr/include/wx-3.1-unofficial/wx/tracker.h 613 | "wx/defs.h" 614 | 615 | 1519163622 /usr/include/wx-3.1-unofficial/wx/meta/convertible.h 616 | 617 | 1519163622 /usr/include/wx-3.1-unofficial/wx/meta/removeref.h 618 | 619 | 1519163620 /usr/include/wx-3.1-unofficial/wx/app.h 620 | "wx/event.h" 621 | "wx/eventfilter.h" 622 | "wx/build.h" 623 | "wx/cmdargs.h" 624 | "wx/init.h" 625 | "wx/intl.h" 626 | "wx/log.h" 627 | "wx/unix/app.h" 628 | "wx/msw/app.h" 629 | "wx/motif/app.h" 630 | "wx/dfb/app.h" 631 | "wx/gtk/app.h" 632 | "wx/gtk1/app.h" 633 | "wx/x11/app.h" 634 | "wx/osx/app.h" 635 | "wx/qt/app.h" 636 | "wx/univ/theme.h" 637 | 638 | 1519163621 /usr/include/wx-3.1-unofficial/wx/eventfilter.h 639 | "wx/defs.h" 640 | 641 | 1519163621 /usr/include/wx-3.1-unofficial/wx/build.h 642 | "wx/version.h" 643 | 644 | 1519163621 /usr/include/wx-3.1-unofficial/wx/cmdargs.h 645 | "wx/arrstr.h" 646 | 647 | 1519163621 /usr/include/wx-3.1-unofficial/wx/init.h 648 | "wx/defs.h" 649 | "wx/chartype.h" 650 | "wx/msw/init.h" 651 | 652 | 1519163622 /usr/include/wx-3.1-unofficial/wx/unix/app.h 653 | 654 | 655 | 1519163624 /usr/include/wx-3.1-unofficial/wx/gtk/app.h 656 | 657 | 1519163621 /usr/include/wx-3.1-unofficial/wx/stream.h 658 | "wx/defs.h" 659 | 660 | "wx/object.h" 661 | "wx/string.h" 662 | "wx/filefn.h" 663 | 664 | 1519163621 /usr/include/wx-3.1-unofficial/wx/stopwatch.h 665 | "wx/defs.h" 666 | "wx/longlong.h" 667 | "wx/time.h" 668 | 669 | 1519163622 /usr/include/wx-3.1-unofficial/wx/time.h 670 | "wx/longlong.h" 671 | 672 | 1519163622 /usr/include/wx-3.1-unofficial/wx/timer.h 673 | "wx/defs.h" 674 | "wx/object.h" 675 | "wx/longlong.h" 676 | "wx/event.h" 677 | "wx/stopwatch.h" 678 | "wx/utils.h" 679 | 680 | 1519163621 /usr/include/wx-3.1-unofficial/wx/module.h 681 | "wx/object.h" 682 | "wx/list.h" 683 | "wx/arrstr.h" 684 | "wx/dynarray.h" 685 | 686 | 1519163623 /usr/include/wx-3.1-unofficial/wx/window.h 687 | "wx/event.h" 688 | "wx/list.h" 689 | "wx/cursor.h" 690 | "wx/font.h" 691 | "wx/colour.h" 692 | "wx/region.h" 693 | "wx/utils.h" 694 | "wx/intl.h" 695 | "wx/validate.h" 696 | "wx/palette.h" 697 | "wx/accel.h" 698 | "wx/access.h" 699 | "wx/msw/window.h" 700 | "wx/motif/window.h" 701 | "wx/gtk/window.h" 702 | "wx/gtk1/window.h" 703 | "wx/x11/window.h" 704 | "wx/dfb/window.h" 705 | "wx/osx/window.h" 706 | "wx/qt/window.h" 707 | "wx/univ/window.h" 708 | 709 | 1519163623 /usr/include/wx-3.1-unofficial/wx/font.h 710 | "wx/defs.h" 711 | "wx/fontenc.h" 712 | "wx/gdiobj.h" 713 | "wx/gdicmn.h" 714 | "wx/msw/font.h" 715 | "wx/motif/font.h" 716 | "wx/gtk/font.h" 717 | "wx/gtk1/font.h" 718 | "wx/x11/font.h" 719 | "wx/dfb/font.h" 720 | "wx/osx/font.h" 721 | "wx/qt/font.h" 722 | 723 | 1519163625 /usr/include/wx-3.1-unofficial/wx/gtk/font.h 724 | 725 | 1519163623 /usr/include/wx-3.1-unofficial/wx/colour.h 726 | "wx/defs.h" 727 | "wx/gdiobj.h" 728 | "wx/variant.h" 729 | "wx/msw/colour.h" 730 | "wx/motif/colour.h" 731 | "wx/gtk/colour.h" 732 | "wx/gtk1/colour.h" 733 | "wx/generic/colour.h" 734 | "wx/x11/colour.h" 735 | "wx/osx/colour.h" 736 | "wx/qt/colour.h" 737 | 738 | 1519163624 /usr/include/wx-3.1-unofficial/wx/gtk/colour.h 739 | 740 | 1519163624 /usr/include/wx-3.1-unofficial/wx/region.h 741 | "wx/gdiobj.h" 742 | "wx/gdicmn.h" 743 | "wx/msw/region.h" 744 | "wx/gtk/region.h" 745 | "wx/gtk1/region.h" 746 | "wx/x11/region.h" 747 | "wx/dfb/region.h" 748 | "wx/osx/region.h" 749 | "wx/qt/region.h" 750 | 751 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/region.h 752 | 753 | 1519163623 /usr/include/wx-3.1-unofficial/wx/validate.h 754 | "wx/defs.h" 755 | "wx/event.h" 756 | 757 | 1519163623 /usr/include/wx-3.1-unofficial/wx/palette.h 758 | "wx/defs.h" 759 | "wx/object.h" 760 | "wx/gdiobj.h" 761 | "wx/msw/palette.h" 762 | "wx/x11/palette.h" 763 | "wx/generic/paletteg.h" 764 | "wx/osx/palette.h" 765 | "wx/qt/palette.h" 766 | 767 | 1519163624 /usr/include/wx-3.1-unofficial/wx/generic/paletteg.h 768 | "wx/defs.h" 769 | "wx/object.h" 770 | "wx/gdiobj.h" 771 | "wx/gdicmn.h" 772 | 773 | 1519163623 /usr/include/wx-3.1-unofficial/wx/accel.h 774 | "wx/defs.h" 775 | "wx/object.h" 776 | "wx/generic/accel.h" 777 | "wx/msw/accel.h" 778 | "wx/motif/accel.h" 779 | "wx/gtk/accel.h" 780 | "wx/gtk1/accel.h" 781 | "wx/osx/accel.h" 782 | "wx/qt/accel.h" 783 | 784 | 1519163622 /usr/include/wx-3.1-unofficial/wx/generic/accel.h 785 | 786 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/accel.h 787 | "wx/generic/accel.h" 788 | 789 | 1519163623 /usr/include/wx-3.1-unofficial/wx/access.h 790 | "wx/defs.h" 791 | "wx/variant.h" 792 | "wx/msw/ole/access.h" 793 | 794 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/window.h 795 | "wx/dynarray.h" 796 | 797 | 1519163621 /usr/include/wx-3.1-unofficial/wx/containr.h 798 | "wx/defs.h" 799 | "wx/event.h" 800 | 801 | 1519163623 /usr/include/wx-3.1-unofficial/wx/panel.h 802 | "wx/window.h" 803 | "wx/containr.h" 804 | "wx/univ/panel.h" 805 | "wx/msw/panel.h" 806 | "wx/generic/panelg.h" 807 | 808 | 1519163622 /usr/include/wx-3.1-unofficial/wx/generic/panelg.h 809 | "wx/bitmap.h" 810 | 811 | 1519163623 /usr/include/wx-3.1-unofficial/wx/bitmap.h 812 | "wx/string.h" 813 | "wx/gdicmn.h" 814 | "wx/colour.h" 815 | "wx/image.h" 816 | "wx/variant.h" 817 | "wx/msw/bitmap.h" 818 | "wx/x11/bitmap.h" 819 | "wx/gtk/bitmap.h" 820 | "wx/gtk1/bitmap.h" 821 | "wx/x11/bitmap.h" 822 | "wx/dfb/bitmap.h" 823 | "wx/osx/bitmap.h" 824 | "wx/qt/bitmap.h" 825 | "wx/generic/mask.h" 826 | 827 | 1519163623 /usr/include/wx-3.1-unofficial/wx/image.h 828 | "wx/defs.h" 829 | "wx/object.h" 830 | "wx/string.h" 831 | "wx/gdicmn.h" 832 | "wx/hashmap.h" 833 | "wx/arrstr.h" 834 | "wx/stream.h" 835 | "wx/variant.h" 836 | "wx/imagbmp.h" 837 | "wx/imagpng.h" 838 | "wx/imaggif.h" 839 | "wx/imagpcx.h" 840 | "wx/imagjpeg.h" 841 | "wx/imagtga.h" 842 | "wx/imagtiff.h" 843 | "wx/imagpnm.h" 844 | "wx/imagxpm.h" 845 | "wx/imagiff.h" 846 | 847 | 1519163623 /usr/include/wx-3.1-unofficial/wx/imagbmp.h 848 | "wx/image.h" 849 | 850 | 1519163623 /usr/include/wx-3.1-unofficial/wx/imagpng.h 851 | "wx/defs.h" 852 | "wx/image.h" 853 | "wx/versioninfo.h" 854 | 855 | 1519163623 /usr/include/wx-3.1-unofficial/wx/imaggif.h 856 | "wx/image.h" 857 | 858 | 1519163623 /usr/include/wx-3.1-unofficial/wx/imagpcx.h 859 | "wx/image.h" 860 | 861 | 1519163623 /usr/include/wx-3.1-unofficial/wx/imagjpeg.h 862 | "wx/defs.h" 863 | "wx/image.h" 864 | "wx/versioninfo.h" 865 | 866 | 1519163623 /usr/include/wx-3.1-unofficial/wx/imagtga.h 867 | "wx/image.h" 868 | 869 | 1519163623 /usr/include/wx-3.1-unofficial/wx/imagtiff.h 870 | "wx/defs.h" 871 | "wx/image.h" 872 | "wx/versioninfo.h" 873 | 874 | 1519163623 /usr/include/wx-3.1-unofficial/wx/imagpnm.h 875 | "wx/image.h" 876 | 877 | 1519163623 /usr/include/wx-3.1-unofficial/wx/imagxpm.h 878 | "wx/image.h" 879 | 880 | 1519163623 /usr/include/wx-3.1-unofficial/wx/imagiff.h 881 | "wx/image.h" 882 | 883 | 1519163624 /usr/include/wx-3.1-unofficial/wx/gtk/bitmap.h 884 | 885 | 1519163624 /usr/include/wx-3.1-unofficial/wx/toplevel.h 886 | "wx/nonownedwnd.h" 887 | "wx/iconbndl.h" 888 | "wx/weakref.h" 889 | "wx/msw/toplevel.h" 890 | "wx/gtk/toplevel.h" 891 | "wx/gtk1/toplevel.h" 892 | "wx/x11/toplevel.h" 893 | "wx/dfb/toplevel.h" 894 | "wx/osx/toplevel.h" 895 | "wx/motif/toplevel.h" 896 | "wx/qt/toplevel.h" 897 | "wx/univ/toplevel.h" 898 | 899 | 1519163623 /usr/include/wx-3.1-unofficial/wx/nonownedwnd.h 900 | "wx/window.h" 901 | "wx/dfb/nonownedwnd.h" 902 | "wx/gtk/nonownedwnd.h" 903 | "wx/osx/nonownedwnd.h" 904 | "wx/msw/nonownedwnd.h" 905 | "wx/qt/nonownedwnd.h" 906 | 907 | 1519163630 /usr/include/wx-3.1-unofficial/wx/gtk/nonownedwnd.h 908 | 909 | 1519163623 /usr/include/wx-3.1-unofficial/wx/iconbndl.h 910 | "wx/gdiobj.h" 911 | "wx/gdicmn.h" 912 | "wx/icon.h" 913 | "wx/dynarray.h" 914 | 915 | 1519163623 /usr/include/wx-3.1-unofficial/wx/icon.h 916 | "wx/iconloc.h" 917 | "wx/msw/icon.h" 918 | "wx/motif/icon.h" 919 | "wx/generic/icon.h" 920 | "wx/generic/icon.h" 921 | "wx/generic/icon.h" 922 | "wx/generic/icon.h" 923 | "wx/osx/icon.h" 924 | "wx/generic/icon.h" 925 | "wx/generic/icon.h" 926 | "wx/variant.h" 927 | 928 | 1519163621 /usr/include/wx-3.1-unofficial/wx/iconloc.h 929 | "wx/string.h" 930 | 931 | 1519163624 /usr/include/wx-3.1-unofficial/wx/generic/icon.h 932 | "wx/bitmap.h" 933 | 934 | 1519163622 /usr/include/wx-3.1-unofficial/wx/weakref.h 935 | "wx/tracker.h" 936 | "wx/meta/convertible.h" 937 | "wx/meta/int2type.h" 938 | 939 | 1519163622 /usr/include/wx-3.1-unofficial/wx/meta/int2type.h 940 | 941 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/toplevel.h 942 | 943 | 1519163622 /usr/include/wx-3.1-unofficial/wx/frame.h 944 | "wx/toplevel.h" 945 | "wx/statusbr.h" 946 | "wx/univ/frame.h" 947 | "wx/msw/frame.h" 948 | "wx/gtk/frame.h" 949 | "wx/gtk1/frame.h" 950 | "wx/motif/frame.h" 951 | "wx/osx/frame.h" 952 | "wx/qt/frame.h" 953 | 954 | 1519163623 /usr/include/wx-3.1-unofficial/wx/statusbr.h 955 | "wx/defs.h" 956 | "wx/control.h" 957 | "wx/list.h" 958 | "wx/dynarray.h" 959 | "wx/univ/statusbr.h" 960 | "wx/msw/statusbar.h" 961 | "wx/generic/statusbr.h" 962 | "wx/osx/statusbr.h" 963 | "wx/qt/statusbar.h" 964 | "wx/generic/statusbr.h" 965 | 966 | 1519163622 /usr/include/wx-3.1-unofficial/wx/control.h 967 | "wx/defs.h" 968 | "wx/window.h" 969 | "wx/gdicmn.h" 970 | "wx/univ/control.h" 971 | "wx/msw/control.h" 972 | "wx/motif/control.h" 973 | "wx/gtk/control.h" 974 | "wx/gtk1/control.h" 975 | "wx/osx/control.h" 976 | "wx/qt/control.h" 977 | 978 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/control.h 979 | 980 | 1519163631 /usr/include/wx-3.1-unofficial/wx/generic/statusbr.h 981 | "wx/defs.h" 982 | "wx/pen.h" 983 | "wx/arrstr.h" 984 | 985 | 1519163623 /usr/include/wx-3.1-unofficial/wx/pen.h 986 | "wx/gdiobj.h" 987 | "wx/peninfobase.h" 988 | "wx/msw/pen.h" 989 | "wx/x11/pen.h" 990 | "wx/gtk/pen.h" 991 | "wx/gtk1/pen.h" 992 | "wx/dfb/pen.h" 993 | "wx/osx/pen.h" 994 | "wx/qt/pen.h" 995 | 996 | 1519163624 /usr/include/wx-3.1-unofficial/wx/peninfobase.h 997 | "wx/bitmap.h" 998 | "wx/colour.h" 999 | "wx/gdicmn.h" 1000 | 1001 | 1519163630 /usr/include/wx-3.1-unofficial/wx/gtk/pen.h 1002 | 1003 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/frame.h 1004 | 1005 | 1519163622 /usr/include/wx-3.1-unofficial/wx/dc.h 1006 | "wx/object.h" 1007 | "wx/intl.h" 1008 | "wx/colour.h" 1009 | "wx/font.h" 1010 | "wx/bitmap.h" 1011 | "wx/brush.h" 1012 | "wx/pen.h" 1013 | "wx/palette.h" 1014 | "wx/dynarray.h" 1015 | "wx/math.h" 1016 | "wx/image.h" 1017 | "wx/region.h" 1018 | "wx/affinematrix2d.h" 1019 | 1020 | 1519163622 /usr/include/wx-3.1-unofficial/wx/brush.h 1021 | "wx/defs.h" 1022 | "wx/object.h" 1023 | "wx/gdiobj.h" 1024 | "wx/gdicmn.h" 1025 | "wx/msw/brush.h" 1026 | "wx/x11/brush.h" 1027 | "wx/gtk/brush.h" 1028 | "wx/gtk1/brush.h" 1029 | "wx/dfb/brush.h" 1030 | "wx/osx/brush.h" 1031 | "wx/qt/brush.h" 1032 | 1033 | 1519163624 /usr/include/wx-3.1-unofficial/wx/gtk/brush.h 1034 | 1035 | 1519163622 /usr/include/wx-3.1-unofficial/wx/affinematrix2d.h 1036 | "wx/defs.h" 1037 | "wx/affinematrix2dbase.h" 1038 | 1039 | 1519163622 /usr/include/wx-3.1-unofficial/wx/affinematrix2dbase.h 1040 | "wx/defs.h" 1041 | "wx/geometry.h" 1042 | 1043 | 1519163623 /usr/include/wx-3.1-unofficial/wx/geometry.h 1044 | "wx/defs.h" 1045 | "wx/utils.h" 1046 | "wx/gdicmn.h" 1047 | "wx/math.h" 1048 | 1049 | 1519163622 /usr/include/wx-3.1-unofficial/wx/dcclient.h 1050 | "wx/dc.h" 1051 | 1052 | 1519163622 /usr/include/wx-3.1-unofficial/wx/dcmemory.h 1053 | "wx/dc.h" 1054 | "wx/bitmap.h" 1055 | 1056 | 1519163622 /usr/include/wx-3.1-unofficial/wx/dcprint.h 1057 | "wx/defs.h" 1058 | "wx/dc.h" 1059 | 1060 | 1519163622 /usr/include/wx-3.1-unofficial/wx/dcscreen.h 1061 | "wx/defs.h" 1062 | "wx/dc.h" 1063 | 1064 | 1519163622 /usr/include/wx-3.1-unofficial/wx/button.h 1065 | "wx/defs.h" 1066 | "wx/anybutton.h" 1067 | "wx/univ/button.h" 1068 | "wx/msw/button.h" 1069 | "wx/motif/button.h" 1070 | "wx/gtk/button.h" 1071 | "wx/gtk1/button.h" 1072 | "wx/osx/button.h" 1073 | "wx/qt/button.h" 1074 | 1075 | 1519163622 /usr/include/wx-3.1-unofficial/wx/anybutton.h 1076 | "wx/defs.h" 1077 | "wx/bitmap.h" 1078 | "wx/control.h" 1079 | "wx/univ/anybutton.h" 1080 | "wx/msw/anybutton.h" 1081 | "wx/gtk/anybutton.h" 1082 | "wx/osx/anybutton.h" 1083 | "wx/qt/anybutton.h" 1084 | 1085 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/anybutton.h 1086 | 1087 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/button.h 1088 | 1089 | 1519163623 /usr/include/wx-3.1-unofficial/wx/menuitem.h 1090 | "wx/defs.h" 1091 | "wx/object.h" 1092 | "wx/univ/menuitem.h" 1093 | "wx/msw/menuitem.h" 1094 | "wx/motif/menuitem.h" 1095 | "wx/gtk/menuitem.h" 1096 | "wx/gtk1/menuitem.h" 1097 | "wx/osx/menuitem.h" 1098 | "wx/qt/menuitem.h" 1099 | 1100 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/menuitem.h 1101 | "wx/bitmap.h" 1102 | 1103 | 1519163623 /usr/include/wx-3.1-unofficial/wx/menu.h 1104 | "wx/defs.h" 1105 | "wx/list.h" 1106 | "wx/window.h" 1107 | "wx/menuitem.h" 1108 | "wx/univ/menu.h" 1109 | "wx/msw/menu.h" 1110 | "wx/motif/menu.h" 1111 | "wx/gtk/menu.h" 1112 | "wx/gtk1/menu.h" 1113 | "wx/osx/menu.h" 1114 | "wx/qt/menu.h" 1115 | 1116 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/menu.h 1117 | 1118 | 1519163622 /usr/include/wx-3.1-unofficial/wx/dialog.h 1119 | "wx/toplevel.h" 1120 | "wx/containr.h" 1121 | "wx/sharedptr.h" 1122 | "wx/univ/dialog.h" 1123 | "wx/msw/dialog.h" 1124 | "wx/motif/dialog.h" 1125 | "wx/gtk/dialog.h" 1126 | "wx/gtk1/dialog.h" 1127 | "wx/osx/dialog.h" 1128 | "wx/qt/dialog.h" 1129 | 1130 | 1519163621 /usr/include/wx-3.1-unofficial/wx/sharedptr.h 1131 | "wx/defs.h" 1132 | "wx/atomic.h" 1133 | 1134 | 1519163620 /usr/include/wx-3.1-unofficial/wx/atomic.h 1135 | "wx/defs.h" 1136 | "wx/msw/wrapwin.h" 1137 | "libkern/OSAtomic.h" 1138 | 1139 | "wx/thread.h" 1140 | 1141 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/dialog.h 1142 | 1143 | 1519163623 /usr/include/wx-3.1-unofficial/wx/settings.h 1144 | "wx/colour.h" 1145 | "wx/font.h" 1146 | 1147 | 1519163623 /usr/include/wx-3.1-unofficial/wx/msgdlg.h 1148 | "wx/defs.h" 1149 | "wx/dialog.h" 1150 | "wx/stockitem.h" 1151 | "wx/generic/msgdlgg.h" 1152 | "wx/msw/msgdlg.h" 1153 | "wx/motif/msgdlg.h" 1154 | "wx/gtk/msgdlg.h" 1155 | "wx/osx/msgdlg.h" 1156 | "wx/qt/msgdlg.h" 1157 | 1158 | 1519163621 /usr/include/wx-3.1-unofficial/wx/stockitem.h 1159 | "wx/defs.h" 1160 | "wx/chartype.h" 1161 | "wx/string.h" 1162 | "wx/accel.h" 1163 | 1164 | 1519163622 /usr/include/wx-3.1-unofficial/wx/generic/msgdlgg.h 1165 | 1166 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/msgdlg.h 1167 | 1168 | 1519163623 /usr/include/wx-3.1-unofficial/wx/dataobj.h 1169 | "wx/defs.h" 1170 | "wx/string.h" 1171 | "wx/bitmap.h" 1172 | "wx/list.h" 1173 | "wx/arrstr.h" 1174 | "wx/msw/ole/dataform.h" 1175 | "wx/motif/dataform.h" 1176 | "wx/gtk/dataform.h" 1177 | "wx/gtk1/dataform.h" 1178 | "wx/x11/dataform.h" 1179 | "wx/osx/dataform.h" 1180 | "wx/qt/dataform.h" 1181 | "wx/msw/ole/dataobj.h" 1182 | "wx/motif/dataobj.h" 1183 | "wx/x11/dataobj.h" 1184 | "wx/gtk/dataobj.h" 1185 | "wx/gtk1/dataobj.h" 1186 | "wx/osx/dataobj.h" 1187 | "wx/qt/dataobj.h" 1188 | "wx/msw/ole/dataobj2.h" 1189 | "wx/gtk/dataobj2.h" 1190 | "wx/gtk1/dataobj2.h" 1191 | "wx/x11/dataobj2.h" 1192 | "wx/motif/dataobj2.h" 1193 | "wx/osx/dataobj2.h" 1194 | "wx/qt/dataobj2.h" 1195 | 1196 | 1519163624 /usr/include/wx-3.1-unofficial/wx/gtk/dataform.h 1197 | 1198 | 1519163624 /usr/include/wx-3.1-unofficial/wx/gtk/dataobj.h 1199 | 1200 | 1519163624 /usr/include/wx-3.1-unofficial/wx/gtk/dataobj2.h 1201 | 1202 | 1519163622 /usr/include/wx-3.1-unofficial/wx/ctrlsub.h 1203 | "wx/defs.h" 1204 | "wx/arrstr.h" 1205 | "wx/control.h" 1206 | 1207 | "wx/msw/ctrlsub.h" 1208 | "wx/motif/ctrlsub.h" 1209 | "wx/qt/ctrlsub.h" 1210 | 1211 | 1519163622 /usr/include/wx-3.1-unofficial/wx/bmpbuttn.h 1212 | "wx/defs.h" 1213 | "wx/button.h" 1214 | "wx/univ/bmpbuttn.h" 1215 | "wx/msw/bmpbuttn.h" 1216 | "wx/motif/bmpbuttn.h" 1217 | "wx/gtk/bmpbuttn.h" 1218 | "wx/gtk1/bmpbuttn.h" 1219 | "wx/osx/bmpbuttn.h" 1220 | "wx/qt/bmpbuttn.h" 1221 | 1222 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/bmpbuttn.h 1223 | 1224 | 1519163622 /usr/include/wx-3.1-unofficial/wx/checkbox.h 1225 | "wx/defs.h" 1226 | "wx/control.h" 1227 | "wx/univ/checkbox.h" 1228 | "wx/msw/checkbox.h" 1229 | "wx/motif/checkbox.h" 1230 | "wx/gtk/checkbox.h" 1231 | "wx/gtk1/checkbox.h" 1232 | "wx/osx/checkbox.h" 1233 | "wx/qt/checkbox.h" 1234 | 1235 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/checkbox.h 1236 | 1237 | 1519163622 /usr/include/wx-3.1-unofficial/wx/checklst.h 1238 | "wx/defs.h" 1239 | "wx/listbox.h" 1240 | "wx/univ/checklst.h" 1241 | "wx/msw/checklst.h" 1242 | "wx/motif/checklst.h" 1243 | "wx/gtk/checklst.h" 1244 | "wx/gtk1/checklst.h" 1245 | "wx/osx/checklst.h" 1246 | "wx/qt/checklst.h" 1247 | 1248 | 1519163623 /usr/include/wx-3.1-unofficial/wx/listbox.h 1249 | "wx/defs.h" 1250 | "wx/ctrlsub.h" 1251 | "wx/univ/listbox.h" 1252 | "wx/msw/listbox.h" 1253 | "wx/motif/listbox.h" 1254 | "wx/gtk/listbox.h" 1255 | "wx/gtk1/listbox.h" 1256 | "wx/osx/listbox.h" 1257 | "wx/qt/listbox.h" 1258 | 1259 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/listbox.h 1260 | 1261 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/checklst.h 1262 | 1263 | 1519163622 /usr/include/wx-3.1-unofficial/wx/choice.h 1264 | "wx/defs.h" 1265 | "wx/ctrlsub.h" 1266 | "wx/univ/choice.h" 1267 | "wx/msw/choice.h" 1268 | "wx/motif/choice.h" 1269 | "wx/gtk/choice.h" 1270 | "wx/gtk1/choice.h" 1271 | "wx/osx/choice.h" 1272 | "wx/qt/choice.h" 1273 | 1274 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/choice.h 1275 | 1276 | 1519163623 /usr/include/wx-3.1-unofficial/wx/scrolbar.h 1277 | "wx/defs.h" 1278 | "wx/control.h" 1279 | "wx/univ/scrolbar.h" 1280 | "wx/msw/scrolbar.h" 1281 | "wx/motif/scrolbar.h" 1282 | "wx/gtk/scrolbar.h" 1283 | "wx/gtk1/scrolbar.h" 1284 | "wx/osx/scrolbar.h" 1285 | "wx/qt/scrolbar.h" 1286 | 1287 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/scrolbar.h 1288 | 1289 | 1519163623 /usr/include/wx-3.1-unofficial/wx/stattext.h 1290 | "wx/defs.h" 1291 | "wx/control.h" 1292 | "wx/univ/stattext.h" 1293 | "wx/msw/stattext.h" 1294 | "wx/motif/stattext.h" 1295 | "wx/gtk/stattext.h" 1296 | "wx/gtk1/stattext.h" 1297 | "wx/osx/stattext.h" 1298 | "wx/qt/stattext.h" 1299 | 1300 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/stattext.h 1301 | 1302 | 1519163623 /usr/include/wx-3.1-unofficial/wx/statbmp.h 1303 | "wx/defs.h" 1304 | "wx/control.h" 1305 | "wx/bitmap.h" 1306 | "wx/icon.h" 1307 | "wx/univ/statbmp.h" 1308 | "wx/msw/statbmp.h" 1309 | "wx/motif/statbmp.h" 1310 | "wx/gtk/statbmp.h" 1311 | "wx/gtk1/statbmp.h" 1312 | "wx/osx/statbmp.h" 1313 | "wx/qt/statbmp.h" 1314 | 1315 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/statbmp.h 1316 | "wx/icon.h" 1317 | 1318 | 1519163623 /usr/include/wx-3.1-unofficial/wx/statbox.h 1319 | "wx/defs.h" 1320 | "wx/control.h" 1321 | "wx/containr.h" 1322 | "wx/univ/statbox.h" 1323 | "wx/msw/statbox.h" 1324 | "wx/motif/statbox.h" 1325 | "wx/gtk/statbox.h" 1326 | "wx/gtk1/statbox.h" 1327 | "wx/osx/statbox.h" 1328 | "wx/qt/statbox.h" 1329 | 1330 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/statbox.h 1331 | 1332 | 1519163623 /usr/include/wx-3.1-unofficial/wx/radiobox.h 1333 | "wx/defs.h" 1334 | "wx/ctrlsub.h" 1335 | "wx/dynarray.h" 1336 | "wx/univ/radiobox.h" 1337 | "wx/msw/radiobox.h" 1338 | "wx/motif/radiobox.h" 1339 | "wx/gtk/radiobox.h" 1340 | "wx/gtk1/radiobox.h" 1341 | "wx/osx/radiobox.h" 1342 | "wx/qt/radiobox.h" 1343 | 1344 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/radiobox.h 1345 | "wx/bitmap.h" 1346 | "wx/list.h" 1347 | 1348 | 1519163623 /usr/include/wx-3.1-unofficial/wx/radiobut.h 1349 | "wx/defs.h" 1350 | "wx/control.h" 1351 | "wx/univ/radiobut.h" 1352 | "wx/msw/radiobut.h" 1353 | "wx/motif/radiobut.h" 1354 | "wx/gtk/radiobut.h" 1355 | "wx/gtk1/radiobut.h" 1356 | "wx/osx/radiobut.h" 1357 | "wx/qt/radiobut.h" 1358 | 1359 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/radiobut.h 1360 | 1361 | 1519163623 /usr/include/wx-3.1-unofficial/wx/textctrl.h 1362 | "wx/defs.h" 1363 | "wx/control.h" 1364 | "wx/textentry.h" 1365 | "wx/dynarray.h" 1366 | "wx/gdicmn.h" 1367 | "wx/ioswrap.h" 1368 | "wx/x11/textctrl.h" 1369 | "wx/univ/textctrl.h" 1370 | "wx/msw/textctrl.h" 1371 | "wx/motif/textctrl.h" 1372 | "wx/gtk/textctrl.h" 1373 | "wx/gtk1/textctrl.h" 1374 | "wx/osx/textctrl.h" 1375 | "wx/qt/textctrl.h" 1376 | 1377 | 1519163623 /usr/include/wx-3.1-unofficial/wx/textentry.h 1378 | "wx/filefn.h" 1379 | "wx/gdicmn.h" 1380 | "wx/gtk/textentry.h" 1381 | "wx/osx/textentry.h" 1382 | "wx/msw/textentry.h" 1383 | "wx/motif/textentry.h" 1384 | "wx/qt/textentry.h" 1385 | 1386 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/textentry.h 1387 | 1388 | 1519163621 /usr/include/wx-3.1-unofficial/wx/ioswrap.h 1389 | "wx/beforestd.h" 1390 | 1391 | 1392 | "wx/afterstd.h" 1393 | "wx/msw/winundef.h" 1394 | 1395 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/textctrl.h 1396 | 1397 | 1519163623 /usr/include/wx-3.1-unofficial/wx/slider.h 1398 | "wx/defs.h" 1399 | "wx/control.h" 1400 | "wx/univ/slider.h" 1401 | "wx/msw/slider.h" 1402 | "wx/motif/slider.h" 1403 | "wx/gtk/slider.h" 1404 | "wx/gtk1/slider.h" 1405 | "wx/osx/slider.h" 1406 | "wx/qt/slider.h" 1407 | 1408 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/slider.h 1409 | 1410 | 1519163622 /usr/include/wx-3.1-unofficial/wx/gauge.h 1411 | "wx/defs.h" 1412 | "wx/control.h" 1413 | "wx/univ/gauge.h" 1414 | "wx/msw/gauge.h" 1415 | "wx/motif/gauge.h" 1416 | "wx/gtk/gauge.h" 1417 | "wx/gtk1/gauge.h" 1418 | "wx/osx/gauge.h" 1419 | "wx/qt/gauge.h" 1420 | 1421 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/gauge.h 1422 | 1423 | 1519163623 /usr/include/wx-3.1-unofficial/wx/scrolwin.h 1424 | "wx/panel.h" 1425 | "wx/gtk/scrolwin.h" 1426 | "wx/gtk1/scrolwin.h" 1427 | "wx/generic/scrolwin.h" 1428 | 1429 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/scrolwin.h 1430 | 1431 | 1519163622 /usr/include/wx-3.1-unofficial/wx/generic/scrolwin.h 1432 | "wx/recguard.h" 1433 | 1434 | 1519163621 /usr/include/wx-3.1-unofficial/wx/recguard.h 1435 | "wx/defs.h" 1436 | 1437 | 1519163622 /usr/include/wx-3.1-unofficial/wx/dirdlg.h 1438 | "wx/defs.h" 1439 | "wx/dialog.h" 1440 | "wx/generic/dirdlgg.h" 1441 | "wx/generic/dirdlgg.h" 1442 | "wx/msw/dirdlg.h" 1443 | "wx/gtk/dirdlg.h" 1444 | "wx/generic/dirdlgg.h" 1445 | "wx/osx/dirdlg.h" 1446 | "wx/generic/dirdlgg.h" 1447 | "wx/qt/dirdlg.h" 1448 | 1449 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/dirdlg.h 1450 | 1451 | 1519163623 /usr/include/wx-3.1-unofficial/wx/toolbar.h 1452 | "wx/defs.h" 1453 | "wx/tbarbase.h" 1454 | "wx/univ/toolbar.h" 1455 | "wx/msw/toolbar.h" 1456 | "wx/motif/toolbar.h" 1457 | "wx/gtk/toolbar.h" 1458 | "wx/gtk1/toolbar.h" 1459 | "wx/osx/toolbar.h" 1460 | "wx/qt/toolbar.h" 1461 | 1462 | 1519163624 /usr/include/wx-3.1-unofficial/wx/tbarbase.h 1463 | "wx/defs.h" 1464 | "wx/bitmap.h" 1465 | "wx/list.h" 1466 | "wx/control.h" 1467 | 1468 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/toolbar.h 1469 | 1470 | 1519163622 /usr/include/wx-3.1-unofficial/wx/combobox.h 1471 | "wx/defs.h" 1472 | "wx/textctrl.h" 1473 | "wx/ctrlsub.h" 1474 | "wx/textentry.h" 1475 | "wx/univ/combobox.h" 1476 | "wx/msw/combobox.h" 1477 | "wx/motif/combobox.h" 1478 | "wx/gtk/combobox.h" 1479 | "wx/gtk1/combobox.h" 1480 | "wx/osx/combobox.h" 1481 | "wx/qt/combobox.h" 1482 | 1483 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/combobox.h 1484 | "wx/choice.h" 1485 | 1486 | 1519163623 /usr/include/wx-3.1-unofficial/wx/layout.h 1487 | "wx/object.h" 1488 | 1489 | 1519163623 /usr/include/wx-3.1-unofficial/wx/sizer.h 1490 | "wx/defs.h" 1491 | "wx/window.h" 1492 | 1493 | 1519163622 /usr/include/wx-3.1-unofficial/wx/choicdlg.h 1494 | "wx/defs.h" 1495 | "wx/generic/choicdgg.h" 1496 | 1497 | 1519163622 /usr/include/wx-3.1-unofficial/wx/generic/choicdgg.h 1498 | "wx/dynarray.h" 1499 | "wx/dialog.h" 1500 | 1501 | 1519163623 /usr/include/wx-3.1-unofficial/wx/textdlg.h 1502 | "wx/generic/textdlgg.h" 1503 | 1504 | 1519163623 /usr/include/wx-3.1-unofficial/wx/generic/textdlgg.h 1505 | "wx/defs.h" 1506 | "wx/dialog.h" 1507 | "wx/valtext.h" 1508 | "wx/textctrl.h" 1509 | 1510 | 1519163623 /usr/include/wx-3.1-unofficial/wx/valtext.h 1511 | "wx/defs.h" 1512 | "wx/validate.h" 1513 | 1514 | 1519163622 /usr/include/wx-3.1-unofficial/wx/filedlg.h 1515 | "wx/defs.h" 1516 | "wx/dialog.h" 1517 | "wx/arrstr.h" 1518 | "wx/generic/filedlgg.h" 1519 | "wx/msw/filedlg.h" 1520 | "wx/motif/filedlg.h" 1521 | "wx/gtk/filedlg.h" 1522 | "wx/gtk1/filedlg.h" 1523 | "wx/osx/filedlg.h" 1524 | "wx/qt/filedlg.h" 1525 | 1526 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/filedlg.h 1527 | "wx/gtk/filectrl.h" 1528 | 1529 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/filectrl.h 1530 | "wx/control.h" 1531 | "wx/filectrl.h" 1532 | 1533 | 1519163623 /usr/include/wx-3.1-unofficial/wx/filectrl.h 1534 | "wx/defs.h" 1535 | "wx/string.h" 1536 | "wx/event.h" 1537 | "wx/gtk/filectrl.h" 1538 | "wx/generic/filectrlg.h" 1539 | 1540 | 1519163622 /usr/include/wx-3.1-unofficial/wx/generic/filectrlg.h 1541 | "wx/containr.h" 1542 | "wx/listctrl.h" 1543 | "wx/filectrl.h" 1544 | "wx/filename.h" 1545 | 1546 | 1519163623 /usr/include/wx-3.1-unofficial/wx/listctrl.h 1547 | "wx/defs.h" 1548 | "wx/listbase.h" 1549 | "wx/msw/listctrl.h" 1550 | "wx/qt/listctrl.h" 1551 | "wx/generic/listctrl.h" 1552 | 1553 | 1519163623 /usr/include/wx-3.1-unofficial/wx/listbase.h 1554 | "wx/colour.h" 1555 | "wx/font.h" 1556 | "wx/gdicmn.h" 1557 | "wx/event.h" 1558 | "wx/control.h" 1559 | "wx/itemattr.h" 1560 | "wx/systhemectrl.h" 1561 | 1562 | 1519163624 /usr/include/wx-3.1-unofficial/wx/itemattr.h 1563 | 1564 | 1519163624 /usr/include/wx-3.1-unofficial/wx/systhemectrl.h 1565 | "wx/defs.h" 1566 | 1567 | 1519163631 /usr/include/wx-3.1-unofficial/wx/generic/listctrl.h 1568 | "wx/containr.h" 1569 | "wx/scrolwin.h" 1570 | "wx/textctrl.h" 1571 | 1572 | 1519163621 /usr/include/wx-3.1-unofficial/wx/filename.h 1573 | "wx/arrstr.h" 1574 | "wx/filefn.h" 1575 | "wx/datetime.h" 1576 | "wx/intl.h" 1577 | "wx/longlong.h" 1578 | "wx/file.h" 1579 | 1580 | 1519163621 /usr/include/wx-3.1-unofficial/wx/file.h 1581 | "wx/defs.h" 1582 | "wx/string.h" 1583 | "wx/filefn.h" 1584 | "wx/convauto.h" 1585 | 1586 | 1519163621 /usr/include/wx-3.1-unofficial/wx/convauto.h 1587 | "wx/strconv.h" 1588 | "wx/fontenc.h" 1589 | 1590 | 1519163623 /usr/include/wx-3.1-unofficial/wx/mdi.h 1591 | "wx/defs.h" 1592 | "wx/frame.h" 1593 | "wx/menu.h" 1594 | "wx/generic/mdig.h" 1595 | "wx/msw/mdi.h" 1596 | "wx/gtk/mdi.h" 1597 | "wx/gtk1/mdi.h" 1598 | "wx/osx/mdi.h" 1599 | "wx/qt/mdi.h" 1600 | 1601 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/mdi.h 1602 | "wx/frame.h" 1603 | 1604 | 1529355389 source:/home/tomay/Desktop/Projects/wxVLC/wxVLCApp.cpp 1605 | "wx_pch.h" 1606 | "wxVLCApp.h" 1607 | "wxVLCMain.h" 1608 | 1609 | 1610 | 1529363482 /home/tomay/Desktop/Projects/wxVLC/wx_pch.h 1611 | 1612 | 1613 | 1614 | 1529363482 /home/tomay/Desktop/Projects/wxVLC/wxVLCApp.h 1615 | 1616 | 1617 | 1529422804 /home/tomay/Desktop/Projects/wxVLC/wxVLCMain.h 1618 | 1619 | "imagepanel.h" 1620 | 1621 | 1622 | 1623 | 1624 | 1625 | 1626 | 1627 | 1628 | 1629 | 1630 | 1631 | 1632 | 1633 | 1529423038 source:/home/tomay/Desktop/Projects/wxVLC/wxVLCMain.cpp 1634 | "wx_pch.h" 1635 | "wxVLCApp.h" 1636 | "wxVLCMain.h" 1637 | 1638 | 1639 | 1640 | 1641 | 1642 | 1643 | 1644 | 1645 | 1646 | 1647 | 1648 | 1519163624 /usr/include/wx-3.1-unofficial/wx/statline.h 1649 | "wx/defs.h" 1650 | "wx/control.h" 1651 | "wx/univ/statline.h" 1652 | "wx/msw/statline.h" 1653 | "wx/gtk/statline.h" 1654 | "wx/gtk1/statline.h" 1655 | "wx/osx/statline.h" 1656 | "wx/qt/statline.h" 1657 | "wx/generic/statline.h" 1658 | 1659 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/statline.h 1660 | "wx/defs.h" 1661 | 1662 | 1491432418 /usr/include/gtk-3.0/gtk/gtk.h 1663 | 1664 | 1665 | 1666 | 1667 | 1668 | 1669 | 1670 | 1671 | 1672 | 1673 | 1674 | 1675 | 1676 | 1677 | 1678 | 1679 | 1680 | 1681 | 1682 | 1683 | 1684 | 1685 | 1686 | 1687 | 1688 | 1689 | 1690 | 1691 | 1692 | 1693 | 1694 | 1695 | 1696 | 1697 | 1698 | 1699 | 1700 | 1701 | 1702 | 1703 | 1704 | 1705 | 1706 | 1707 | 1708 | 1709 | 1710 | 1711 | 1712 | 1713 | 1714 | 1715 | 1716 | 1717 | 1718 | 1719 | 1720 | 1721 | 1722 | 1723 | 1724 | 1725 | 1726 | 1727 | 1728 | 1729 | 1730 | 1731 | 1732 | 1733 | 1734 | 1735 | 1736 | 1737 | 1738 | 1739 | 1740 | 1741 | 1742 | 1743 | 1744 | 1745 | 1746 | 1747 | 1748 | 1749 | 1750 | 1751 | 1752 | 1753 | 1754 | 1755 | 1756 | 1757 | 1758 | 1759 | 1760 | 1761 | 1762 | 1763 | 1764 | 1765 | 1766 | 1767 | 1768 | 1769 | 1770 | 1771 | 1772 | 1773 | 1774 | 1775 | 1776 | 1777 | 1778 | 1779 | 1780 | 1781 | 1782 | 1783 | 1784 | 1785 | 1786 | 1787 | 1788 | 1789 | 1790 | 1791 | 1792 | 1793 | 1794 | 1795 | 1796 | 1797 | 1798 | 1799 | 1800 | 1801 | 1802 | 1803 | 1804 | 1805 | 1806 | 1807 | 1808 | 1809 | 1810 | 1811 | 1812 | 1813 | 1814 | 1815 | 1816 | 1817 | 1818 | 1819 | 1820 | 1821 | 1822 | 1823 | 1824 | 1825 | 1826 | 1827 | 1828 | 1829 | 1830 | 1831 | 1832 | 1833 | 1834 | 1835 | 1836 | 1837 | 1838 | 1839 | 1840 | 1841 | 1842 | 1843 | 1844 | 1845 | 1846 | 1847 | 1848 | 1849 | 1850 | 1851 | 1852 | 1853 | 1854 | 1855 | 1856 | 1857 | 1858 | 1859 | 1860 | 1861 | 1862 | 1863 | 1864 | 1865 | 1866 | 1867 | 1868 | 1869 | 1870 | 1871 | 1872 | 1873 | 1874 | 1875 | 1876 | 1877 | 1878 | 1879 | 1880 | 1881 | 1882 | 1883 | 1884 | 1885 | 1886 | 1887 | 1888 | 1889 | 1890 | 1891 | 1892 | 1893 | 1894 | 1895 | 1896 | 1897 | 1898 | 1899 | 1900 | 1901 | 1902 | 1903 | 1904 | 1905 | 1906 | 1907 | 1908 | 1909 | 1910 | 1491432417 /usr/include/gtk-3.0/gdk/gdk.h 1911 | 1912 | 1913 | 1914 | 1915 | 1916 | 1917 | 1918 | 1919 | 1920 | 1921 | 1922 | 1923 | 1924 | 1925 | 1926 | 1927 | 1928 | 1929 | 1930 | 1931 | 1932 | 1933 | 1934 | 1935 | 1936 | 1937 | 1938 | 1939 | 1940 | 1941 | 1942 | 1943 | 1944 | 1491432417 /usr/include/gtk-3.0/gdk/gdkconfig.h 1945 | 1946 | 1947 | 1483723821 /usr/include/glib-2.0/glib.h 1948 | 1949 | 1950 | 1951 | 1952 | 1953 | 1954 | 1955 | 1956 | 1957 | 1958 | 1959 | 1960 | 1961 | 1962 | 1963 | 1964 | 1965 | 1966 | 1967 | 1968 | 1969 | 1970 | 1971 | 1972 | 1973 | 1974 | 1975 | 1976 | 1977 | 1978 | 1979 | 1980 | 1981 | 1982 | 1983 | 1984 | 1985 | 1986 | 1987 | 1988 | 1989 | 1990 | 1991 | 1992 | 1993 | 1994 | 1995 | 1996 | 1997 | 1998 | 1999 | 2000 | 2001 | 2002 | 2003 | 2004 | 2005 | 2006 | 2007 | 2008 | 2009 | 2010 | 2011 | 2012 | 2013 | 2014 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 2023 | 2024 | 1483723821 /usr/include/glib-2.0/glib/galloca.h 2025 | 2026 | 2027 | 2028 | 2029 | 2030 | 1483723821 /usr/include/glib-2.0/glib/gtypes.h 2031 | 2032 | 2033 | 2034 | 2035 | 2036 | 1483723821 /usr/lib/x86_64-linux-gnu/glib-2.0/include/glibconfig.h 2037 | 2038 | 2039 | 2040 | 2041 | 1483723821 /usr/include/glib-2.0/glib/gmacros.h 2042 | 2043 | 2044 | 1483723821 /usr/include/glib-2.0/glib/gversionmacros.h 2045 | 2046 | 1483723821 /usr/include/glib-2.0/glib/garray.h 2047 | 2048 | 2049 | 1483723821 /usr/include/glib-2.0/glib/gasyncqueue.h 2050 | 2051 | 2052 | 1483723821 /usr/include/glib-2.0/glib/gthread.h 2053 | 2054 | 2055 | 2056 | 2057 | 1483723821 /usr/include/glib-2.0/glib/gatomic.h 2058 | 2059 | 2060 | 1483723821 /usr/include/glib-2.0/glib/gerror.h 2061 | 2062 | 2063 | 2064 | 1483723821 /usr/include/glib-2.0/glib/gquark.h 2065 | 2066 | 2067 | 1483723821 /usr/include/glib-2.0/glib/gutils.h 2068 | 2069 | 2070 | 2071 | 1483723821 /usr/include/glib-2.0/glib/gbacktrace.h 2072 | 2073 | 2074 | 2075 | 1483723821 /usr/include/glib-2.0/glib/gbase64.h 2076 | 2077 | 2078 | 1483723821 /usr/include/glib-2.0/glib/gbitlock.h 2079 | 2080 | 2081 | 1483723821 /usr/include/glib-2.0/glib/gbookmarkfile.h 2082 | 2083 | 2084 | 2085 | 1483723821 /usr/include/glib-2.0/glib/gbytes.h 2086 | 2087 | 2088 | 2089 | 1483723821 /usr/include/glib-2.0/glib/gcharset.h 2090 | 2091 | 2092 | 1483723821 /usr/include/glib-2.0/glib/gchecksum.h 2093 | 2094 | 2095 | 2096 | 1483723821 /usr/include/glib-2.0/glib/gconvert.h 2097 | 2098 | 2099 | 1483723821 /usr/include/glib-2.0/glib/gdataset.h 2100 | 2101 | 2102 | 1483723821 /usr/include/glib-2.0/glib/gdate.h 2103 | 2104 | 2105 | 2106 | 2107 | 1483723821 /usr/include/glib-2.0/glib/gdatetime.h 2108 | 2109 | 2110 | 1483723821 /usr/include/glib-2.0/glib/gtimezone.h 2111 | 2112 | 2113 | 1483723821 /usr/include/glib-2.0/glib/gdir.h 2114 | 2115 | 2116 | 2117 | 1483723821 /usr/include/glib-2.0/glib/genviron.h 2118 | 2119 | 2120 | 1483723821 /usr/include/glib-2.0/glib/gfileutils.h 2121 | 2122 | 2123 | 1483723821 /usr/include/glib-2.0/glib/ggettext.h 2124 | 2125 | 2126 | 1483723821 /usr/include/glib-2.0/glib/ghash.h 2127 | 2128 | 2129 | 2130 | 1483723821 /usr/include/glib-2.0/glib/glist.h 2131 | 2132 | 2133 | 2134 | 1483723821 /usr/include/glib-2.0/glib/gmem.h 2135 | 2136 | 2137 | 1483723821 /usr/include/glib-2.0/glib/gnode.h 2138 | 2139 | 2140 | 1483723821 /usr/include/glib-2.0/glib/ghmac.h 2141 | 2142 | "gchecksum.h" 2143 | 2144 | 1483723821 /usr/include/glib-2.0/glib/ghook.h 2145 | 2146 | 2147 | 1483723821 /usr/include/glib-2.0/glib/ghostutils.h 2148 | 2149 | 2150 | 1483723821 /usr/include/glib-2.0/glib/giochannel.h 2151 | 2152 | 2153 | 2154 | 2155 | 1483723821 /usr/include/glib-2.0/glib/gmain.h 2156 | 2157 | 2158 | 2159 | 2160 | 1483723821 /usr/include/glib-2.0/glib/gpoll.h 2161 | 2162 | 2163 | 2164 | 1483723821 /usr/include/glib-2.0/glib/gslist.h 2165 | 2166 | 2167 | 2168 | 1483723821 /usr/include/glib-2.0/glib/gstring.h 2169 | 2170 | 2171 | 2172 | 2173 | 2174 | 1483723821 /usr/include/glib-2.0/glib/gunicode.h 2175 | 2176 | 2177 | 2178 | 1483723821 /usr/include/glib-2.0/glib/gkeyfile.h 2179 | 2180 | 2181 | 1483723821 /usr/include/glib-2.0/glib/gmappedfile.h 2182 | 2183 | 2184 | 2185 | 1483723821 /usr/include/glib-2.0/glib/gmarkup.h 2186 | 2187 | 2188 | 2189 | 2190 | 1483723821 /usr/include/glib-2.0/glib/gmessages.h 2191 | 2192 | 2193 | 2194 | 2195 | 1483723821 /usr/include/glib-2.0/glib/goption.h 2196 | 2197 | 2198 | 2199 | 1483723821 /usr/include/glib-2.0/glib/gpattern.h 2200 | 2201 | 2202 | 1483723821 /usr/include/glib-2.0/glib/gprimes.h 2203 | 2204 | 2205 | 1483723821 /usr/include/glib-2.0/glib/gqsort.h 2206 | 2207 | 2208 | 1483723821 /usr/include/glib-2.0/glib/gqueue.h 2209 | 2210 | 2211 | 1483723821 /usr/include/glib-2.0/glib/grand.h 2212 | 2213 | 2214 | 1483723821 /usr/include/glib-2.0/glib/gregex.h 2215 | 2216 | 2217 | 2218 | 1483723821 /usr/include/glib-2.0/glib/gscanner.h 2219 | 2220 | 2221 | 2222 | 1483723821 /usr/include/glib-2.0/glib/gsequence.h 2223 | 2224 | 2225 | 1483723821 /usr/include/glib-2.0/glib/gshell.h 2226 | 2227 | 2228 | 1483723821 /usr/include/glib-2.0/glib/gslice.h 2229 | 2230 | 2231 | 1483723821 /usr/include/glib-2.0/glib/gspawn.h 2232 | 2233 | 2234 | 1483723821 /usr/include/glib-2.0/glib/gstrfuncs.h 2235 | 2236 | 2237 | 2238 | 2239 | 1483723821 /usr/include/glib-2.0/glib/gstringchunk.h 2240 | 2241 | 2242 | 1483723821 /usr/include/glib-2.0/glib/gtestutils.h 2243 | 2244 | 2245 | 2246 | 2247 | 2248 | 1483723821 /usr/include/glib-2.0/glib/gthreadpool.h 2249 | 2250 | 2251 | 1483723821 /usr/include/glib-2.0/glib/gtimer.h 2252 | 2253 | 2254 | 1483723821 /usr/include/glib-2.0/glib/gtrashstack.h 2255 | 2256 | 2257 | 1483723821 /usr/include/glib-2.0/glib/gtree.h 2258 | 2259 | 2260 | 1483723821 /usr/include/glib-2.0/glib/gurifuncs.h 2261 | 2262 | 2263 | 1483723821 /usr/include/glib-2.0/glib/gvarianttype.h 2264 | 2265 | 2266 | 2267 | 1483723821 /usr/include/glib-2.0/glib/gvariant.h 2268 | 2269 | 2270 | 2271 | 2272 | 1483723821 /usr/include/glib-2.0/glib/gversion.h 2273 | 2274 | 2275 | 1483723821 /usr/include/glib-2.0/glib/gwin32.h 2276 | 2277 | 2278 | 1483723821 /usr/include/glib-2.0/glib/deprecated/gallocator.h 2279 | 2280 | 2281 | 1483723821 /usr/include/glib-2.0/glib/deprecated/gcache.h 2282 | 2283 | 2284 | 1483723821 /usr/include/glib-2.0/glib/deprecated/gcompletion.h 2285 | 2286 | 2287 | 1483723821 /usr/include/glib-2.0/glib/deprecated/gmain.h 2288 | 2289 | 2290 | 1483723821 /usr/include/glib-2.0/glib/deprecated/grel.h 2291 | 2292 | 2293 | 1483723821 /usr/include/glib-2.0/glib/deprecated/gthread.h 2294 | 2295 | 2296 | 2297 | 2298 | 1483723821 /usr/include/glib-2.0/glib/glib-autocleanups.h 2299 | 2300 | 1491432417 /usr/include/gtk-3.0/gdk/gdkversionmacros.h 2301 | 2302 | 2303 | 1491432417 /usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h 2304 | 2305 | 2306 | 2307 | 2308 | 2309 | 1483723825 /usr/include/glib-2.0/gio/gio.h 2310 | 2311 | 2312 | 2313 | 2314 | 2315 | 2316 | 2317 | 2318 | 2319 | 2320 | 2321 | 2322 | 2323 | 2324 | 2325 | 2326 | 2327 | 2328 | 2329 | 2330 | 2331 | 2332 | 2333 | 2334 | 2335 | 2336 | 2337 | 2338 | 2339 | 2340 | 2341 | 2342 | 2343 | 2344 | 2345 | 2346 | 2347 | 2348 | 2349 | 2350 | 2351 | 2352 | 2353 | 2354 | 2355 | 2356 | 2357 | 2358 | 2359 | 2360 | 2361 | 2362 | 2363 | 2364 | 2365 | 2366 | 2367 | 2368 | 2369 | 2370 | 2371 | 2372 | 2373 | 2374 | 2375 | 2376 | 2377 | 2378 | 2379 | 2380 | 2381 | 2382 | 2383 | 2384 | 2385 | 2386 | 2387 | 2388 | 2389 | 2390 | 2391 | 2392 | 2393 | 2394 | 2395 | 2396 | 2397 | 2398 | 2399 | 2400 | 2401 | 2402 | 2403 | 2404 | 2405 | 2406 | 2407 | 2408 | 2409 | 2410 | 2411 | 2412 | 2413 | 2414 | 2415 | 2416 | 2417 | 2418 | 2419 | 2420 | 2421 | 2422 | 2423 | 2424 | 2425 | 2426 | 2427 | 2428 | 2429 | 2430 | 2431 | 2432 | 2433 | 2434 | 2435 | 2436 | 2437 | 2438 | 2439 | 2440 | 2441 | 2442 | 2443 | 2444 | 2445 | 2446 | 2447 | 2448 | 2449 | 2450 | 2451 | 2452 | 2453 | 2454 | 2455 | 1483723825 /usr/include/glib-2.0/gio/giotypes.h 2456 | 2457 | 2458 | 1483723825 /usr/include/glib-2.0/gio/gioenums.h 2459 | 2460 | 2461 | 1483723821 /usr/include/glib-2.0/glib-object.h 2462 | 2463 | 2464 | 2465 | 2466 | 2467 | 2468 | 2469 | 2470 | 2471 | 2472 | 2473 | 2474 | 2475 | 2476 | 2477 | 2478 | 1483723824 /usr/include/glib-2.0/gobject/gbinding.h 2479 | 2480 | 2481 | 2482 | 1483723824 /usr/include/glib-2.0/gobject/gobject.h 2483 | 2484 | 2485 | 2486 | 2487 | 2488 | 2489 | 2490 | 1483723824 /usr/include/glib-2.0/gobject/gtype.h 2491 | 2492 | 2493 | 1483723824 /usr/include/glib-2.0/gobject/gvalue.h 2494 | 2495 | 2496 | 1483723824 /usr/include/glib-2.0/gobject/gparam.h 2497 | 2498 | 2499 | 1483723824 /usr/include/glib-2.0/gobject/gclosure.h 2500 | 2501 | 2502 | 1483723824 /usr/include/glib-2.0/gobject/gsignal.h 2503 | 2504 | 2505 | 2506 | 2507 | 2508 | 1483723824 /usr/include/glib-2.0/gobject/gmarshal.h 2509 | 2510 | 1483723824 /usr/include/glib-2.0/gobject/gboxed.h 2511 | 2512 | 2513 | 2514 | 1483723824 /usr/include/glib-2.0/gobject/glib-types.h 2515 | 2516 | 2517 | 1483723824 /usr/include/glib-2.0/gobject/genums.h 2518 | 2519 | 2520 | 1483723824 /usr/include/glib-2.0/gobject/gparamspecs.h 2521 | 2522 | 2523 | 2524 | 2525 | 2526 | 1483723824 /usr/include/glib-2.0/gobject/gsourceclosure.h 2527 | 2528 | 2529 | 2530 | 1483723824 /usr/include/glib-2.0/gobject/gtypemodule.h 2531 | 2532 | 2533 | 2534 | 1483723824 /usr/include/glib-2.0/gobject/gtypeplugin.h 2535 | 2536 | 2537 | 1483723824 /usr/include/glib-2.0/gobject/gvaluearray.h 2538 | 2539 | 2540 | 1483723824 /usr/include/glib-2.0/gobject/gvaluetypes.h 2541 | 2542 | 2543 | 1483723824 /usr/include/glib-2.0/gobject/gobject-autocleanups.h 2544 | 2545 | 1483723825 /usr/include/glib-2.0/gio/gaction.h 2546 | 2547 | 2548 | 1483723825 /usr/include/glib-2.0/gio/gactiongroup.h 2549 | 2550 | 2551 | 1483723825 /usr/include/glib-2.0/gio/gactiongroupexporter.h 2552 | 2553 | 2554 | 1483723825 /usr/include/glib-2.0/gio/gactionmap.h 2555 | 2556 | 2557 | 1483723825 /usr/include/glib-2.0/gio/gappinfo.h 2558 | 2559 | 2560 | 1483723825 /usr/include/glib-2.0/gio/gapplication.h 2561 | 2562 | 2563 | 1483723825 /usr/include/glib-2.0/gio/gapplicationcommandline.h 2564 | 2565 | 2566 | 1483723825 /usr/include/glib-2.0/gio/gasyncinitable.h 2567 | 2568 | 2569 | 2570 | 1483723825 /usr/include/glib-2.0/gio/ginitable.h 2571 | 2572 | 2573 | 1483723825 /usr/include/glib-2.0/gio/gasyncresult.h 2574 | 2575 | 2576 | 1483723825 /usr/include/glib-2.0/gio/gbufferedinputstream.h 2577 | 2578 | 2579 | 1483723825 /usr/include/glib-2.0/gio/gfilterinputstream.h 2580 | 2581 | 2582 | 1483723825 /usr/include/glib-2.0/gio/ginputstream.h 2583 | 2584 | 2585 | 1483723825 /usr/include/glib-2.0/gio/gbufferedoutputstream.h 2586 | 2587 | 2588 | 1483723825 /usr/include/glib-2.0/gio/gfilteroutputstream.h 2589 | 2590 | 2591 | 1483723825 /usr/include/glib-2.0/gio/goutputstream.h 2592 | 2593 | 2594 | 1483723825 /usr/include/glib-2.0/gio/gbytesicon.h 2595 | 2596 | 2597 | 1483723825 /usr/include/glib-2.0/gio/gcancellable.h 2598 | 2599 | 2600 | 1483723825 /usr/include/glib-2.0/gio/gcharsetconverter.h 2601 | 2602 | 2603 | 1483723825 /usr/include/glib-2.0/gio/gconverter.h 2604 | 2605 | 2606 | 1483723825 /usr/include/glib-2.0/gio/gcontenttype.h 2607 | 2608 | 2609 | 1483723825 /usr/include/glib-2.0/gio/gconverterinputstream.h 2610 | 2611 | 2612 | 2613 | 1483723825 /usr/include/glib-2.0/gio/gconverteroutputstream.h 2614 | 2615 | 2616 | 2617 | 1483723825 /usr/include/glib-2.0/gio/gcredentials.h 2618 | 2619 | 2620 | 2621 | 2622 | 1483723825 /usr/include/glib-2.0/gio/gdatagrambased.h 2623 | 2624 | 2625 | 1483723825 /usr/include/glib-2.0/gio/gdatainputstream.h 2626 | 2627 | 2628 | 1483723825 /usr/include/glib-2.0/gio/gdataoutputstream.h 2629 | 2630 | 2631 | 1483723825 /usr/include/glib-2.0/gio/gdbusaddress.h 2632 | 2633 | 2634 | 1483723825 /usr/include/glib-2.0/gio/gdbusauthobserver.h 2635 | 2636 | 2637 | 1483723825 /usr/include/glib-2.0/gio/gdbusconnection.h 2638 | 2639 | 2640 | 1483723825 /usr/include/glib-2.0/gio/gdbuserror.h 2641 | 2642 | 2643 | 1483723825 /usr/include/glib-2.0/gio/gdbusintrospection.h 2644 | 2645 | 2646 | 1483723825 /usr/include/glib-2.0/gio/gdbusmessage.h 2647 | 2648 | 2649 | 1483723825 /usr/include/glib-2.0/gio/gdbusmethodinvocation.h 2650 | 2651 | 2652 | 1483723825 /usr/include/glib-2.0/gio/gdbusnameowning.h 2653 | 2654 | 2655 | 1483723825 /usr/include/glib-2.0/gio/gdbusnamewatching.h 2656 | 2657 | 2658 | 1483723825 /usr/include/glib-2.0/gio/gdbusproxy.h 2659 | 2660 | 2661 | 2662 | 1483723825 /usr/include/glib-2.0/gio/gdbusserver.h 2663 | 2664 | 2665 | 1483723825 /usr/include/glib-2.0/gio/gdbusutils.h 2666 | 2667 | 2668 | 1483723825 /usr/include/glib-2.0/gio/gdrive.h 2669 | 2670 | 2671 | 1483723825 /usr/include/glib-2.0/gio/gdtlsclientconnection.h 2672 | 2673 | 2674 | 1483723825 /usr/include/glib-2.0/gio/gdtlsconnection.h 2675 | 2676 | 2677 | 1483723825 /usr/include/glib-2.0/gio/gdtlsserverconnection.h 2678 | 2679 | 2680 | 1483723825 /usr/include/glib-2.0/gio/gemblemedicon.h 2681 | 2682 | 2683 | 2684 | 1483723825 /usr/include/glib-2.0/gio/gicon.h 2685 | 2686 | 2687 | 1483723825 /usr/include/glib-2.0/gio/gemblem.h 2688 | 2689 | 2690 | 1483723825 /usr/include/glib-2.0/gio/gfileattribute.h 2691 | 2692 | 2693 | 1483723825 /usr/include/glib-2.0/gio/gfileenumerator.h 2694 | 2695 | 2696 | 1483723825 /usr/include/glib-2.0/gio/gfile.h 2697 | 2698 | 2699 | 1483723825 /usr/include/glib-2.0/gio/gfileicon.h 2700 | 2701 | 2702 | 1483723825 /usr/include/glib-2.0/gio/gfileinfo.h 2703 | 2704 | 2705 | 1483723825 /usr/include/glib-2.0/gio/gfileinputstream.h 2706 | 2707 | 2708 | 1483723825 /usr/include/glib-2.0/gio/gfileiostream.h 2709 | 2710 | 2711 | 1483723825 /usr/include/glib-2.0/gio/giostream.h 2712 | 2713 | 2714 | 2715 | 2716 | 2717 | 1483723825 /usr/include/glib-2.0/gio/gioerror.h 2718 | 2719 | 2720 | 2721 | 1483723825 /usr/include/glib-2.0/gio/gfilemonitor.h 2722 | 2723 | 2724 | 1483723825 /usr/include/glib-2.0/gio/gfilenamecompleter.h 2725 | 2726 | 2727 | 1483723825 /usr/include/glib-2.0/gio/gfileoutputstream.h 2728 | 2729 | 2730 | 1483723825 /usr/include/glib-2.0/gio/ginetaddress.h 2731 | 2732 | 2733 | 1483723825 /usr/include/glib-2.0/gio/ginetaddressmask.h 2734 | 2735 | 2736 | 1483723825 /usr/include/glib-2.0/gio/ginetsocketaddress.h 2737 | 2738 | 2739 | 1483723825 /usr/include/glib-2.0/gio/gsocketaddress.h 2740 | 2741 | 2742 | 1483723825 /usr/include/glib-2.0/gio/gioenumtypes.h 2743 | 2744 | 2745 | 1483723825 /usr/include/glib-2.0/gio/giomodule.h 2746 | 2747 | 2748 | 2749 | 1483723823 /usr/include/glib-2.0/gmodule.h 2750 | 2751 | 2752 | 1483723825 /usr/include/glib-2.0/gio/gioscheduler.h 2753 | 2754 | 2755 | 1483723825 /usr/include/glib-2.0/gio/gloadableicon.h 2756 | 2757 | 2758 | 1483723825 /usr/include/glib-2.0/gio/gmemoryinputstream.h 2759 | 2760 | 2761 | 1483723825 /usr/include/glib-2.0/gio/gmemoryoutputstream.h 2762 | 2763 | 2764 | 1483723825 /usr/include/glib-2.0/gio/gmount.h 2765 | 2766 | 2767 | 1483723825 /usr/include/glib-2.0/gio/gmountoperation.h 2768 | 2769 | 2770 | 1483723825 /usr/include/glib-2.0/gio/gnativevolumemonitor.h 2771 | 2772 | 2773 | 1483723825 /usr/include/glib-2.0/gio/gvolumemonitor.h 2774 | 2775 | 2776 | 1483723825 /usr/include/glib-2.0/gio/gnetworkaddress.h 2777 | 2778 | 2779 | 1483723825 /usr/include/glib-2.0/gio/gnetworkmonitor.h 2780 | 2781 | 2782 | 1483723825 /usr/include/glib-2.0/gio/gnetworkservice.h 2783 | 2784 | 2785 | 1483723825 /usr/include/glib-2.0/gio/gpermission.h 2786 | 2787 | 2788 | 1483723825 /usr/include/glib-2.0/gio/gpollableinputstream.h 2789 | 2790 | 2791 | 1483723825 /usr/include/glib-2.0/gio/gpollableoutputstream.h 2792 | 2793 | 2794 | 1483723825 /usr/include/glib-2.0/gio/gpollableutils.h 2795 | 2796 | 2797 | 1483723825 /usr/include/glib-2.0/gio/gpropertyaction.h 2798 | 2799 | 2800 | 1483723825 /usr/include/glib-2.0/gio/gproxy.h 2801 | 2802 | 2803 | 1483723825 /usr/include/glib-2.0/gio/gproxyaddress.h 2804 | 2805 | 2806 | 1483723825 /usr/include/glib-2.0/gio/gproxyaddressenumerator.h 2807 | 2808 | 2809 | 1483723825 /usr/include/glib-2.0/gio/gsocketaddressenumerator.h 2810 | 2811 | 2812 | 1483723825 /usr/include/glib-2.0/gio/gproxyresolver.h 2813 | 2814 | 2815 | 1483723825 /usr/include/glib-2.0/gio/gresolver.h 2816 | 2817 | 2818 | 1483723825 /usr/include/glib-2.0/gio/gresource.h 2819 | 2820 | 2821 | 1483723825 /usr/include/glib-2.0/gio/gseekable.h 2822 | 2823 | 2824 | 1483723825 /usr/include/glib-2.0/gio/gsettingsschema.h 2825 | 2826 | 2827 | 1483723825 /usr/include/glib-2.0/gio/gsettings.h 2828 | 2829 | 2830 | 2831 | 1483723825 /usr/include/glib-2.0/gio/gsimpleaction.h 2832 | 2833 | 2834 | 1483723825 /usr/include/glib-2.0/gio/gsimpleactiongroup.h 2835 | "gactiongroup.h" 2836 | "gactionmap.h" 2837 | 2838 | 1483723825 /usr/include/glib-2.0/gio/gsimpleasyncresult.h 2839 | 2840 | 2841 | 1483723825 /usr/include/glib-2.0/gio/gsimpleiostream.h 2842 | 2843 | 2844 | 2845 | 1483723825 /usr/include/glib-2.0/gio/gsimplepermission.h 2846 | 2847 | 2848 | 1483723825 /usr/include/glib-2.0/gio/gsocketclient.h 2849 | 2850 | 2851 | 1483723825 /usr/include/glib-2.0/gio/gsocketconnectable.h 2852 | 2853 | 2854 | 1483723825 /usr/include/glib-2.0/gio/gsocketconnection.h 2855 | 2856 | 2857 | 2858 | 2859 | 1483723825 /usr/include/glib-2.0/gio/gsocket.h 2860 | 2861 | 2862 | 1483723825 /usr/include/glib-2.0/gio/gsocketcontrolmessage.h 2863 | 2864 | 2865 | 1483723825 /usr/include/glib-2.0/gio/gsocketlistener.h 2866 | 2867 | 2868 | 1483723825 /usr/include/glib-2.0/gio/gsocketservice.h 2869 | 2870 | 2871 | 1483723825 /usr/include/glib-2.0/gio/gsrvtarget.h 2872 | 2873 | 2874 | 1483723825 /usr/include/glib-2.0/gio/gsimpleproxyresolver.h 2875 | 2876 | 2877 | 1483723825 /usr/include/glib-2.0/gio/gtask.h 2878 | 2879 | 2880 | 1483723825 /usr/include/glib-2.0/gio/gsubprocess.h 2881 | 2882 | 2883 | 1483723825 /usr/include/glib-2.0/gio/gsubprocesslauncher.h 2884 | 2885 | 2886 | 1483723825 /usr/include/glib-2.0/gio/gtcpconnection.h 2887 | 2888 | 2889 | 1483723825 /usr/include/glib-2.0/gio/gtcpwrapperconnection.h 2890 | 2891 | 2892 | 1483723825 /usr/include/glib-2.0/gio/gtestdbus.h 2893 | 2894 | 2895 | 1483723825 /usr/include/glib-2.0/gio/gthemedicon.h 2896 | 2897 | 2898 | 1483723825 /usr/include/glib-2.0/gio/gthreadedsocketservice.h 2899 | 2900 | 2901 | 1483723825 /usr/include/glib-2.0/gio/gtlsbackend.h 2902 | 2903 | 2904 | 1483723825 /usr/include/glib-2.0/gio/gtlscertificate.h 2905 | 2906 | 2907 | 1483723825 /usr/include/glib-2.0/gio/gtlsclientconnection.h 2908 | 2909 | 2910 | 1483723825 /usr/include/glib-2.0/gio/gtlsconnection.h 2911 | 2912 | 2913 | 1483723825 /usr/include/glib-2.0/gio/gtlsdatabase.h 2914 | 2915 | 2916 | 1483723825 /usr/include/glib-2.0/gio/gtlsfiledatabase.h 2917 | 2918 | 2919 | 1483723825 /usr/include/glib-2.0/gio/gtlsinteraction.h 2920 | 2921 | 2922 | 1483723825 /usr/include/glib-2.0/gio/gtlsserverconnection.h 2923 | 2924 | 2925 | 1483723825 /usr/include/glib-2.0/gio/gtlspassword.h 2926 | 2927 | 2928 | 1483723825 /usr/include/glib-2.0/gio/gvfs.h 2929 | 2930 | 2931 | 1483723825 /usr/include/glib-2.0/gio/gvolume.h 2932 | 2933 | 2934 | 1483723825 /usr/include/glib-2.0/gio/gzlibcompressor.h 2935 | 2936 | 2937 | 2938 | 1483723825 /usr/include/glib-2.0/gio/gzlibdecompressor.h 2939 | 2940 | 2941 | 2942 | 1483723825 /usr/include/glib-2.0/gio/gdbusinterface.h 2943 | 2944 | 2945 | 1483723825 /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h 2946 | 2947 | 2948 | 1483723825 /usr/include/glib-2.0/gio/gdbusobject.h 2949 | 2950 | 2951 | 1483723825 /usr/include/glib-2.0/gio/gdbusobjectskeleton.h 2952 | 2953 | 2954 | 1483723825 /usr/include/glib-2.0/gio/gdbusobjectproxy.h 2955 | 2956 | 2957 | 1483723825 /usr/include/glib-2.0/gio/gdbusobjectmanager.h 2958 | 2959 | 2960 | 1483723825 /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h 2961 | 2962 | 2963 | 1483723825 /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h 2964 | 2965 | 2966 | 1483723825 /usr/include/glib-2.0/gio/gdbusactiongroup.h 2967 | "giotypes.h" 2968 | 2969 | 1483723825 /usr/include/glib-2.0/gio/gremoteactiongroup.h 2970 | 2971 | 2972 | 1483723825 /usr/include/glib-2.0/gio/gmenumodel.h 2973 | 2974 | 2975 | 2976 | 1483723825 /usr/include/glib-2.0/gio/gmenu.h 2977 | 2978 | 2979 | 1483723825 /usr/include/glib-2.0/gio/gmenuexporter.h 2980 | 2981 | 2982 | 2983 | 1483723825 /usr/include/glib-2.0/gio/gdbusmenumodel.h 2984 | 2985 | 2986 | 1483723825 /usr/include/glib-2.0/gio/gnotification.h 2987 | 2988 | 2989 | 2990 | 1483723825 /usr/include/glib-2.0/gio/glistmodel.h 2991 | 2992 | 2993 | 1483723825 /usr/include/glib-2.0/gio/gliststore.h 2994 | 2995 | 2996 | 1483723825 /usr/include/glib-2.0/gio/gio-autocleanups.h 2997 | 2998 | 1491432417 /usr/include/gtk-3.0/gdk/gdktypes.h 2999 | 3000 | 3001 | 3002 | 3003 | 3004 | 3005 | 1445636048 /usr/include/pango-1.0/pango/pango.h 3006 | 3007 | 3008 | 3009 | 3010 | 3011 | 3012 | 3013 | 3014 | 3015 | 3016 | 3017 | 3018 | 3019 | 3020 | 3021 | 3022 | 3023 | 3024 | 3025 | 3026 | 3027 | 3028 | 3029 | 1445636048 /usr/include/pango-1.0/pango/pango-attributes.h 3030 | 3031 | 3032 | 3033 | 1445636048 /usr/include/pango-1.0/pango/pango-font.h 3034 | 3035 | 3036 | 3037 | 3038 | 1445636048 /usr/include/pango-1.0/pango/pango-coverage.h 3039 | 3040 | 3041 | 1445636048 /usr/include/pango-1.0/pango/pango-types.h 3042 | 3043 | 3044 | 3045 | 3046 | 3047 | 3048 | 3049 | 3050 | 1445636048 /usr/include/pango-1.0/pango/pango-gravity.h 3051 | 3052 | 3053 | 3054 | 3055 | 1445636048 /usr/include/pango-1.0/pango/pango-matrix.h 3056 | 3057 | 3058 | 3059 | 3060 | 1445636048 /usr/include/pango-1.0/pango/pango-script.h 3061 | 3062 | 3063 | 3064 | 1445636048 /usr/include/pango-1.0/pango/pango-language.h 3065 | 3066 | 3067 | 3068 | 3069 | 1445636048 /usr/include/pango-1.0/pango/pango-bidi-type.h 3070 | 3071 | 3072 | 1445636048 /usr/include/pango-1.0/pango/pango-break.h 3073 | 3074 | 3075 | 3076 | 1445636048 /usr/include/pango-1.0/pango/pango-item.h 3077 | 3078 | 3079 | 1445636048 /usr/include/pango-1.0/pango/pango-context.h 3080 | 3081 | 3082 | 3083 | 3084 | 1445636048 /usr/include/pango-1.0/pango/pango-fontmap.h 3085 | 3086 | 3087 | 3088 | 1445636048 /usr/include/pango-1.0/pango/pango-fontset.h 3089 | 3090 | 3091 | 3092 | 3093 | 1445636048 /usr/include/pango-1.0/pango/pango-engine.h 3094 | 3095 | 3096 | 3097 | 3098 | 3099 | 3100 | 1445636048 /usr/include/pango-1.0/pango/pango-glyph.h 3101 | 3102 | 3103 | 3104 | 1445636048 /usr/include/pango-1.0/pango/pango-enum-types.h 3105 | 3106 | 3107 | 1445636048 /usr/include/pango-1.0/pango/pango-features.h 3108 | 3109 | 1445636048 /usr/include/pango-1.0/pango/pango-glyph-item.h 3110 | 3111 | 3112 | 3113 | 3114 | 3115 | 1445636048 /usr/include/pango-1.0/pango/pango-layout.h 3116 | 3117 | 3118 | 3119 | 3120 | 3121 | 1445636048 /usr/include/pango-1.0/pango/pango-tabs.h 3122 | 3123 | 3124 | 1445636048 /usr/include/pango-1.0/pango/pango-renderer.h 3125 | 3126 | 3127 | 1445636048 /usr/include/pango-1.0/pango/pango-utils.h 3128 | 3129 | 3130 | 3131 | 3132 | 1452424597 /usr/include/cairo/cairo.h 3133 | "cairo-version.h" 3134 | "cairo-features.h" 3135 | "cairo-deprecated.h" 3136 | 3137 | 1452424597 /usr/include/cairo/cairo-version.h 3138 | 3139 | 1452424597 /usr/include/cairo/cairo-features.h 3140 | 3141 | 1452424597 /usr/include/cairo/cairo-deprecated.h 3142 | 3143 | 1491432417 /usr/include/gtk-3.0/gdk/gdkscreen.h 3144 | 3145 | 3146 | 3147 | 3148 | 3149 | 1491432417 /usr/include/gtk-3.0/gdk/gdkdisplay.h 3150 | 3151 | 3152 | 3153 | 3154 | 3155 | 1491432417 /usr/include/gtk-3.0/gdk/gdkevents.h 3156 | 3157 | 3158 | 3159 | 3160 | 3161 | 1491432417 /usr/include/gtk-3.0/gdk/gdkdnd.h 3162 | 3163 | 3164 | 3165 | 1491432417 /usr/include/gtk-3.0/gdk/gdkdevice.h 3166 | 3167 | 3168 | 3169 | 1491432417 /usr/include/gtk-3.0/gdk/gdkdevicemanager.h 3170 | 3171 | 3172 | 3173 | 1491432417 /usr/include/gtk-3.0/gdk/gdkcairo.h 3174 | 3175 | 3176 | 3177 | 3178 | 3179 | 3180 | 1491432417 /usr/include/gtk-3.0/gdk/deprecated/gdkcolor.h 3181 | 3182 | 3183 | 3184 | 3185 | 1491432417 /usr/include/gtk-3.0/gdk/gdkrgba.h 3186 | 3187 | 3188 | 3189 | 1491432417 /usr/include/gtk-3.0/gdk/gdkpixbuf.h 3190 | 3191 | 3192 | 3193 | 3194 | 3195 | 1515762838 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h 3196 | 3197 | 3198 | 3199 | 3200 | 3201 | 3202 | 3203 | 3204 | 3205 | 3206 | 3207 | 3208 | 1515762838 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h 3209 | 3210 | 3211 | 1515762838 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h 3212 | 3213 | 3214 | 3215 | 3216 | 1515762838 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h 3217 | 3218 | 3219 | 3220 | 1515762838 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h 3221 | 3222 | 3223 | 3224 | 1515762838 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h 3225 | 3226 | 3227 | 1515762838 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h 3228 | 3229 | 3230 | 3231 | 3232 | 3233 | 3234 | 1515762838 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h 3235 | 3236 | 3237 | 3238 | 3239 | 3240 | 3241 | 1515762838 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h 3242 | 3243 | 3244 | 1515762838 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h 3245 | 3246 | 1445636048 /usr/include/pango-1.0/pango/pangocairo.h 3247 | 3248 | 3249 | 3250 | 1491432417 /usr/include/gtk-3.0/gdk/gdkcursor.h 3251 | 3252 | 3253 | 3254 | 3255 | 1491432417 /usr/include/gtk-3.0/gdk/gdkdisplaymanager.h 3256 | 3257 | 3258 | 3259 | 1491432417 /usr/include/gtk-3.0/gdk/gdkenumtypes.h 3260 | 3261 | 3262 | 3263 | 1491432417 /usr/include/gtk-3.0/gdk/gdkframeclock.h 3264 | 3265 | 3266 | 1491432417 /usr/include/gtk-3.0/gdk/gdkframetimings.h 3267 | 3268 | 3269 | 3270 | 1491432417 /usr/include/gtk-3.0/gdk/gdkglcontext.h 3271 | 3272 | 3273 | 3274 | 1491432417 /usr/include/gtk-3.0/gdk/gdkkeys.h 3275 | 3276 | 3277 | 3278 | 1491432417 /usr/include/gtk-3.0/gdk/gdkkeysyms.h 3279 | 3280 | 1491432417 /usr/include/gtk-3.0/gdk/gdkmain.h 3281 | 3282 | 3283 | 3284 | 1491432417 /usr/include/gtk-3.0/gdk/gdkpango.h 3285 | 3286 | 3287 | 3288 | 1491432417 /usr/include/gtk-3.0/gdk/gdkproperty.h 3289 | 3290 | 3291 | 3292 | 1491432417 /usr/include/gtk-3.0/gdk/gdkrectangle.h 3293 | 3294 | 3295 | 3296 | 1491432417 /usr/include/gtk-3.0/gdk/gdkselection.h 3297 | 3298 | 3299 | 3300 | 1491432417 /usr/include/gtk-3.0/gdk/gdktestutils.h 3301 | 3302 | 3303 | 1491432417 /usr/include/gtk-3.0/gdk/gdkwindow.h 3304 | 3305 | 3306 | 3307 | 3308 | 3309 | 1491432417 /usr/include/gtk-3.0/gdk/gdkthreads.h 3310 | 3311 | 3312 | 3313 | 1491432417 /usr/include/gtk-3.0/gdk/gdkvisual.h 3314 | 3315 | 3316 | 3317 | 1491432417 /usr/include/gtk-3.0/gdk/gdk-autocleanup.h 3318 | 3319 | 1491432418 /usr/include/gtk-3.0/gtk/gtkaboutdialog.h 3320 | 3321 | 3322 | 1491432418 /usr/include/gtk-3.0/gtk/gtkdialog.h 3323 | 3324 | 3325 | 1491432418 /usr/include/gtk-3.0/gtk/gtkwindow.h 3326 | 3327 | 3328 | 3329 | 3330 | 1491432418 /usr/include/gtk-3.0/gtk/gtkapplication.h 3331 | 3332 | 3333 | 3334 | 1491432418 /usr/include/gtk-3.0/gtk/gtkwidget.h 3335 | 3336 | 3337 | 3338 | 3339 | 3340 | 3341 | 1491432418 /usr/include/gtk-3.0/gtk/gtkaccelgroup.h 3342 | 3343 | 3344 | 3345 | 1491432418 /usr/include/gtk-3.0/gtk/gtkenums.h 3346 | 3347 | 3348 | 1491432418 /usr/include/gtk-3.0/gtk/gtkborder.h 3349 | 3350 | 3351 | 3352 | 1491432418 /usr/include/gtk-3.0/gtk/gtktypes.h 3353 | 3354 | 1445633774 /usr/include/atk-1.0/atk/atk.h 3355 | 3356 | 3357 | 3358 | 3359 | 3360 | 3361 | 3362 | 3363 | 3364 | 3365 | 3366 | 3367 | 3368 | 3369 | 3370 | 3371 | 3372 | 3373 | 3374 | 3375 | 3376 | 3377 | 3378 | 3379 | 3380 | 3381 | 3382 | 3383 | 3384 | 3385 | 3386 | 3387 | 3388 | 3389 | 1445633774 /usr/include/atk-1.0/atk/atkobject.h 3390 | 3391 | 3392 | 3393 | 3394 | 3395 | 1445633774 /usr/include/atk-1.0/atk/atkversion.h 3396 | 3397 | 3398 | 1445633774 /usr/include/atk-1.0/atk/atkstate.h 3399 | 3400 | 3401 | 3402 | 1445633774 /usr/include/atk-1.0/atk/atkrelationtype.h 3403 | 3404 | 3405 | 1445633774 /usr/include/atk-1.0/atk/atkaction.h 3406 | 3407 | 3408 | 1445633774 /usr/include/atk-1.0/atk/atkcomponent.h 3409 | 3410 | 3411 | 3412 | 1445633774 /usr/include/atk-1.0/atk/atkutil.h 3413 | 3414 | 3415 | 1445633774 /usr/include/atk-1.0/atk/atkdocument.h 3416 | 3417 | 3418 | 3419 | 1445633774 /usr/include/atk-1.0/atk/atkeditabletext.h 3420 | 3421 | 3422 | 3423 | 1445633774 /usr/include/atk-1.0/atk/atktext.h 3424 | 3425 | 3426 | 3427 | 3428 | 1445633774 /usr/include/atk-1.0/atk/atk-enum-types.h 3429 | 3430 | 3431 | 3432 | 1445633774 /usr/include/atk-1.0/atk/atkgobjectaccessible.h 3433 | 3434 | 3435 | 1445633774 /usr/include/atk-1.0/atk/atkhyperlink.h 3436 | 3437 | 3438 | 1445633774 /usr/include/atk-1.0/atk/atkhyperlinkimpl.h 3439 | 3440 | 3441 | 3442 | 1445633774 /usr/include/atk-1.0/atk/atkhypertext.h 3443 | 3444 | 3445 | 3446 | 1445633774 /usr/include/atk-1.0/atk/atkimage.h 3447 | 3448 | 3449 | 3450 | 1445633774 /usr/include/atk-1.0/atk/atknoopobject.h 3451 | 3452 | 3453 | 1445633774 /usr/include/atk-1.0/atk/atknoopobjectfactory.h 3454 | 3455 | 3456 | 1445633774 /usr/include/atk-1.0/atk/atkobjectfactory.h 3457 | 3458 | 3459 | 3460 | 1445633774 /usr/include/atk-1.0/atk/atkplug.h 3461 | 3462 | 3463 | 1445633774 /usr/include/atk-1.0/atk/atkrange.h 3464 | 3465 | 3466 | 3467 | 1445633774 /usr/include/atk-1.0/atk/atkregistry.h 3468 | 3469 | "atkobjectfactory.h" 3470 | 3471 | 1445633774 /usr/include/atk-1.0/atk/atkrelation.h 3472 | 3473 | 3474 | 3475 | 3476 | 1445633774 /usr/include/atk-1.0/atk/atkrelationset.h 3477 | 3478 | 3479 | 3480 | 3481 | 1445633774 /usr/include/atk-1.0/atk/atkselection.h 3482 | 3483 | 3484 | 1445633774 /usr/include/atk-1.0/atk/atksocket.h 3485 | 3486 | 3487 | 1445633774 /usr/include/atk-1.0/atk/atkstateset.h 3488 | 3489 | 3490 | 3491 | 3492 | 1445633774 /usr/include/atk-1.0/atk/atkstreamablecontent.h 3493 | 3494 | 3495 | 1445633774 /usr/include/atk-1.0/atk/atktable.h 3496 | 3497 | 3498 | 1445633774 /usr/include/atk-1.0/atk/atktablecell.h 3499 | 3500 | 3501 | 1445633774 /usr/include/atk-1.0/atk/atkmisc.h 3502 | 3503 | 3504 | 3505 | 1445633774 /usr/include/atk-1.0/atk/atkvalue.h 3506 | 3507 | 3508 | 3509 | 1445633774 /usr/include/atk-1.0/atk/atkwindow.h 3510 | 3511 | 3512 | 1491432418 /usr/include/gtk-3.0/gtk/gtkbin.h 3513 | 3514 | 3515 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcontainer.h 3516 | 3517 | 3518 | 1491432418 /usr/include/gtk-3.0/gtk/gtkaccellabel.h 3519 | 3520 | 3521 | 1491432418 /usr/include/gtk-3.0/gtk/gtklabel.h 3522 | 3523 | 3524 | 3525 | 3526 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h 3527 | 3528 | 3529 | 1491432418 /usr/include/gtk-3.0/gtk/gtkmenu.h 3530 | 3531 | 3532 | 3533 | 1491432418 /usr/include/gtk-3.0/gtk/gtkmenushell.h 3534 | 3535 | 3536 | 1491432418 /usr/include/gtk-3.0/gtk/gtkaccelmap.h 3537 | 3538 | 3539 | 1491432418 /usr/include/gtk-3.0/gtk/gtkaccessible.h 3540 | 3541 | 3542 | 3543 | 1491432418 /usr/include/gtk-3.0/gtk/gtkactionable.h 3544 | 3545 | 3546 | 3547 | 1491432418 /usr/include/gtk-3.0/gtk/gtkactionbar.h 3548 | 3549 | 3550 | 1491432418 /usr/include/gtk-3.0/gtk/gtkadjustment.h 3551 | 3552 | 3553 | 3554 | 1491432418 /usr/include/gtk-3.0/gtk/gtkappchooser.h 3555 | 3556 | 3557 | 3558 | 3559 | 1491432418 /usr/include/gtk-3.0/gtk/gtkappchooserdialog.h 3560 | 3561 | 3562 | 3563 | 1491432418 /usr/include/gtk-3.0/gtk/gtkappchooserwidget.h 3564 | 3565 | 3566 | 3567 | 3568 | 1491432418 /usr/include/gtk-3.0/gtk/gtkbox.h 3569 | 3570 | 3571 | 1491432418 /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h 3572 | 3573 | 3574 | 3575 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcombobox.h 3576 | 3577 | 3578 | 3579 | 3580 | 1491432418 /usr/include/gtk-3.0/gtk/gtktreemodel.h 3581 | 3582 | 3583 | 3584 | 1491432418 /usr/include/gtk-3.0/gtk/gtktreeview.h 3585 | 3586 | 3587 | 3588 | 3589 | 3590 | 3591 | 1491432418 /usr/include/gtk-3.0/gtk/gtktreeviewcolumn.h 3592 | 3593 | 3594 | 3595 | 3596 | 3597 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcellrenderer.h 3598 | 3599 | 3600 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcelleditable.h 3601 | 3602 | 3603 | 1491432418 /usr/include/gtk-3.0/gtk/gtktreesortable.h 3604 | 3605 | 3606 | 3607 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcellarea.h 3608 | 3609 | 3610 | 3611 | 3612 | 1491432418 /usr/include/gtk-3.0/gtk/gtkdnd.h 3613 | 3614 | 3615 | 3616 | 1491432418 /usr/include/gtk-3.0/gtk/gtkselection.h 3617 | 3618 | 3619 | 3620 | 1491432418 /usr/include/gtk-3.0/gtk/gtktextiter.h 3621 | 3622 | 3623 | 3624 | 3625 | 1491432418 /usr/include/gtk-3.0/gtk/gtktextattributes.h 3626 | 3627 | 3628 | 3629 | 1491432418 /usr/include/gtk-3.0/gtk/gtktextchild.h 3630 | 3631 | 3632 | 3633 | 1491432418 /usr/include/gtk-3.0/gtk/gtktexttag.h 3634 | 3635 | 3636 | 3637 | 1491432418 /usr/include/gtk-3.0/gtk/gtkentry.h 3638 | 3639 | 3640 | 3641 | 3642 | 3643 | 3644 | 3645 | 3646 | 1491432418 /usr/include/gtk-3.0/gtk/gtkeditable.h 3647 | 3648 | 3649 | 1491432418 /usr/include/gtk-3.0/gtk/gtkimcontext.h 3650 | 3651 | 3652 | 1491432418 /usr/include/gtk-3.0/gtk/gtkentrybuffer.h 3653 | 3654 | 3655 | 3656 | 1491432418 /usr/include/gtk-3.0/gtk/gtkentrycompletion.h 3657 | 3658 | 3659 | 3660 | 3661 | 3662 | 3663 | 3664 | 1491432418 /usr/include/gtk-3.0/gtk/gtkliststore.h 3665 | 3666 | 3667 | 3668 | 3669 | 1491432418 /usr/include/gtk-3.0/gtk/gtktreemodelfilter.h 3670 | 3671 | 3672 | 1491432418 /usr/include/gtk-3.0/gtk/gtkimage.h 3673 | 3674 | 3675 | 3676 | 1491432418 /usr/include/gtk-3.0/gtk/gtkapplicationwindow.h 3677 | 3678 | 3679 | 1491432418 /usr/include/gtk-3.0/gtk/gtkaspectframe.h 3680 | 3681 | 3682 | 1491432418 /usr/include/gtk-3.0/gtk/gtkframe.h 3683 | 3684 | 3685 | 1491432418 /usr/include/gtk-3.0/gtk/gtkassistant.h 3686 | 3687 | 3688 | 1491432418 /usr/include/gtk-3.0/gtk/gtkbbox.h 3689 | 3690 | 3691 | 1491432418 /usr/include/gtk-3.0/gtk/gtkbindings.h 3692 | 3693 | 3694 | 3695 | 1491432418 /usr/include/gtk-3.0/gtk/gtkbuildable.h 3696 | 3697 | 3698 | 1491432418 /usr/include/gtk-3.0/gtk/gtkbuilder.h 3699 | 3700 | 3701 | 3702 | 1491432418 /usr/include/gtk-3.0/gtk/gtkbutton.h 3703 | 3704 | 3705 | 3706 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcalendar.h 3707 | 3708 | 3709 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcellareabox.h 3710 | 3711 | 3712 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcellareacontext.h 3713 | 3714 | 3715 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcelllayout.h 3716 | 3717 | 3718 | 3719 | 3720 | 3721 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcellrendereraccel.h 3722 | 3723 | 3724 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcellrenderertext.h 3725 | 3726 | 3727 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcellrenderercombo.h 3728 | 3729 | 3730 | 3731 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h 3732 | 3733 | 3734 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcellrendererprogress.h 3735 | 3736 | 3737 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcellrendererspin.h 3738 | 3739 | 3740 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcellrendererspinner.h 3741 | 3742 | 3743 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcellrenderertoggle.h 3744 | 3745 | 3746 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcellview.h 3747 | 3748 | 3749 | 3750 | 3751 | 3752 | 3753 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcheckbutton.h 3754 | 3755 | 3756 | 1491432418 /usr/include/gtk-3.0/gtk/gtktogglebutton.h 3757 | 3758 | 3759 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcheckmenuitem.h 3760 | 3761 | 3762 | 1491432418 /usr/include/gtk-3.0/gtk/gtkmenuitem.h 3763 | 3764 | 3765 | 1491432418 /usr/include/gtk-3.0/gtk/gtkclipboard.h 3766 | 3767 | 3768 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcolorbutton.h 3769 | 3770 | 3771 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcolorchooser.h 3772 | 3773 | 3774 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcolorchooserdialog.h 3775 | 3776 | 3777 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcolorchooserwidget.h 3778 | 3779 | 3780 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcolorutils.h 3781 | 3782 | 3783 | 3784 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcomboboxtext.h 3785 | 3786 | 3787 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcssprovider.h 3788 | 3789 | 3790 | 3791 | 1491432418 /usr/include/gtk-3.0/gtk/gtkcsssection.h 3792 | 3793 | 3794 | 3795 | 1491432418 /usr/include/gtk-3.0/gtk/gtkdebug.h 3796 | 3797 | 3798 | 3799 | 1491432418 /usr/include/gtk-3.0/gtk/gtkdrawingarea.h 3800 | 3801 | 3802 | 1491432418 /usr/include/gtk-3.0/gtk/gtkeventbox.h 3803 | 3804 | 3805 | 1491432418 /usr/include/gtk-3.0/gtk/gtkeventcontroller.h 3806 | 3807 | 3808 | 3809 | 3810 | 1491432418 /usr/include/gtk-3.0/gtk/gtkexpander.h 3811 | 3812 | 3813 | 1491432418 /usr/include/gtk-3.0/gtk/gtkfixed.h 3814 | 3815 | 3816 | 1491432418 /usr/include/gtk-3.0/gtk/gtkfilechooser.h 3817 | 3818 | 3819 | 3820 | 1491432418 /usr/include/gtk-3.0/gtk/gtkfilefilter.h 3821 | 3822 | 3823 | 3824 | 1491432418 /usr/include/gtk-3.0/gtk/gtkfilechooserbutton.h 3825 | 3826 | 3827 | 3828 | 1491432418 /usr/include/gtk-3.0/gtk/gtkfilechooserdialog.h 3829 | 3830 | 3831 | 3832 | 1491432418 /usr/include/gtk-3.0/gtk/gtkfilechooserwidget.h 3833 | 3834 | 3835 | 3836 | 1491432418 /usr/include/gtk-3.0/gtk/gtkflowbox.h 3837 | 3838 | 3839 | 1491432418 /usr/include/gtk-3.0/gtk/gtkfontbutton.h 3840 | 3841 | 3842 | 1491432418 /usr/include/gtk-3.0/gtk/gtkfontchooser.h 3843 | 3844 | 3845 | 1491432418 /usr/include/gtk-3.0/gtk/gtkfontchooserdialog.h 3846 | 3847 | 3848 | 1491432418 /usr/include/gtk-3.0/gtk/gtkfontchooserwidget.h 3849 | 3850 | 3851 | 1491432418 /usr/include/gtk-3.0/gtk/gtkgesture.h 3852 | 3853 | 3854 | 3855 | 1491432418 /usr/include/gtk-3.0/gtk/gtkgesturedrag.h 3856 | 3857 | 3858 | 3859 | 1491432418 /usr/include/gtk-3.0/gtk/gtkgesturesingle.h 3860 | 3861 | 3862 | 1491432418 /usr/include/gtk-3.0/gtk/gtkgesturelongpress.h 3863 | 3864 | 3865 | 1491432418 /usr/include/gtk-3.0/gtk/gtkgesturemultipress.h 3866 | 3867 | 3868 | 3869 | 1491432418 /usr/include/gtk-3.0/gtk/gtkgesturepan.h 3870 | 3871 | 3872 | 3873 | 1491432418 /usr/include/gtk-3.0/gtk/gtkgesturerotate.h 3874 | 3875 | 3876 | 3877 | 1491432418 /usr/include/gtk-3.0/gtk/gtkgestureswipe.h 3878 | 3879 | 3880 | 3881 | 1491432418 /usr/include/gtk-3.0/gtk/gtkgesturezoom.h 3882 | 3883 | 3884 | 3885 | 1491432418 /usr/include/gtk-3.0/gtk/gtkglarea.h 3886 | 3887 | 3888 | 1491432418 /usr/include/gtk-3.0/gtk/gtkgrid.h 3889 | 3890 | 3891 | 1491432418 /usr/include/gtk-3.0/gtk/gtkheaderbar.h 3892 | 3893 | 3894 | 1491432418 /usr/include/gtk-3.0/gtk/gtkicontheme.h 3895 | 3896 | 3897 | 3898 | 3899 | 1491432418 /usr/include/gtk-3.0/gtk/gtkstylecontext.h 3900 | 3901 | 3902 | 3903 | 3904 | 3905 | 3906 | 1491432418 /usr/include/gtk-3.0/gtk/gtkstyleprovider.h 3907 | 3908 | 3909 | 3910 | 3911 | 3912 | 3913 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkiconfactory.h 3914 | 3915 | 3916 | 3917 | 3918 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkstyleproperties.h 3919 | 3920 | 3921 | 3922 | 3923 | 1491432418 /usr/include/gtk-3.0/gtk/gtkiconview.h 3924 | 3925 | 3926 | 3927 | 3928 | 3929 | 3930 | 3931 | 1491432418 /usr/include/gtk-3.0/gtk/gtktooltip.h 3932 | 3933 | 3934 | 1491432418 /usr/include/gtk-3.0/gtk/gtkimcontextinfo.h 3935 | 3936 | 3937 | 1491432418 /usr/include/gtk-3.0/gtk/gtkimcontextsimple.h 3938 | 3939 | 3940 | 1491432418 /usr/include/gtk-3.0/gtk/gtkimmulticontext.h 3941 | 3942 | 3943 | 3944 | 1491432418 /usr/include/gtk-3.0/gtk/gtkinfobar.h 3945 | 3946 | 3947 | 3948 | 1491432418 /usr/include/gtk-3.0/gtk/gtkinvisible.h 3949 | 3950 | 3951 | 1491432418 /usr/include/gtk-3.0/gtk/gtklayout.h 3952 | 3953 | 3954 | 1491432418 /usr/include/gtk-3.0/gtk/gtklevelbar.h 3955 | 3956 | 3957 | 1491432418 /usr/include/gtk-3.0/gtk/gtklinkbutton.h 3958 | 3959 | 3960 | 1491432418 /usr/include/gtk-3.0/gtk/gtklistbox.h 3961 | 3962 | 3963 | 1491432418 /usr/include/gtk-3.0/gtk/gtklockbutton.h 3964 | 3965 | 3966 | 3967 | 1491432418 /usr/include/gtk-3.0/gtk/gtkmain.h 3968 | 3969 | 3970 | 3971 | 3972 | 3973 | 1491432418 /usr/include/gtk-3.0/gtk/gtkmenubar.h 3974 | 3975 | 3976 | 1491432418 /usr/include/gtk-3.0/gtk/gtkmenubutton.h 3977 | 3978 | 3979 | 3980 | 3981 | 1491432418 /usr/include/gtk-3.0/gtk/gtkpopover.h 3982 | 3983 | 3984 | 1491432418 /usr/include/gtk-3.0/gtk/gtkmenutoolbutton.h 3985 | 3986 | 3987 | 3988 | 1491432418 /usr/include/gtk-3.0/gtk/gtktoolbutton.h 3989 | 3990 | 3991 | 1491432418 /usr/include/gtk-3.0/gtk/gtktoolitem.h 3992 | 3993 | 3994 | 3995 | 3996 | 1491432418 /usr/include/gtk-3.0/gtk/gtksizegroup.h 3997 | 3998 | 3999 | 1491432418 /usr/include/gtk-3.0/gtk/gtkmessagedialog.h 4000 | 4001 | 4002 | 4003 | 1491432418 /usr/include/gtk-3.0/gtk/gtkmodelbutton.h 4004 | 4005 | 4006 | 1491432418 /usr/include/gtk-3.0/gtk/gtkmodules.h 4007 | 4008 | 4009 | 1491432418 /usr/include/gtk-3.0/gtk/gtkmountoperation.h 4010 | 4011 | 1491432418 /usr/include/gtk-3.0/gtk/gtknotebook.h 4012 | 4013 | 4014 | 1491432418 /usr/include/gtk-3.0/gtk/gtkoffscreenwindow.h 4015 | 4016 | 4017 | 1491432418 /usr/include/gtk-3.0/gtk/gtkorientable.h 4018 | 4019 | 4020 | 1491432418 /usr/include/gtk-3.0/gtk/gtkoverlay.h 4021 | 4022 | 4023 | 1491432418 /usr/include/gtk-3.0/gtk/gtkpagesetup.h 4024 | 4025 | 4026 | 1491432418 /usr/include/gtk-3.0/gtk/gtkpapersize.h 4027 | 4028 | 4029 | 4030 | 1491432418 /usr/include/gtk-3.0/gtk/gtkpaned.h 4031 | 4032 | 4033 | 1491432418 /usr/include/gtk-3.0/gtk/gtkplacessidebar.h 4034 | 4035 | 4036 | 1491432418 /usr/include/gtk-3.0/gtk/gtkpopovermenu.h 4037 | 4038 | 4039 | 1491432418 /usr/include/gtk-3.0/gtk/gtkprintcontext.h 4040 | 4041 | 4042 | 4043 | 1491432418 /usr/include/gtk-3.0/gtk/gtkprintoperation.h 4044 | 4045 | 4046 | 4047 | 4048 | 4049 | 4050 | 4051 | 4052 | 1491432418 /usr/include/gtk-3.0/gtk/gtkprintsettings.h 4053 | 4054 | 4055 | 1491432418 /usr/include/gtk-3.0/gtk/gtkprintoperationpreview.h 4056 | 4057 | 4058 | 4059 | 1491432418 /usr/include/gtk-3.0/gtk/gtkprogressbar.h 4060 | 4061 | 4062 | 1491432418 /usr/include/gtk-3.0/gtk/gtkradiobutton.h 4063 | 4064 | 4065 | 1491432418 /usr/include/gtk-3.0/gtk/gtkradiomenuitem.h 4066 | 4067 | 4068 | 1491432418 /usr/include/gtk-3.0/gtk/gtkradiotoolbutton.h 4069 | 4070 | 4071 | 1491432418 /usr/include/gtk-3.0/gtk/gtktoggletoolbutton.h 4072 | 4073 | 4074 | 1491432418 /usr/include/gtk-3.0/gtk/gtkrange.h 4075 | 4076 | 4077 | 1491432418 /usr/include/gtk-3.0/gtk/gtkrecentchooser.h 4078 | 4079 | 4080 | 4081 | 4082 | 1491432418 /usr/include/gtk-3.0/gtk/gtkrecentmanager.h 4083 | 4084 | 4085 | 4086 | 4087 | 1491432418 /usr/include/gtk-3.0/gtk/gtkrecentfilter.h 4088 | 4089 | 4090 | 4091 | 1491432418 /usr/include/gtk-3.0/gtk/gtkrecentchooserdialog.h 4092 | 4093 | 4094 | 4095 | 1491432418 /usr/include/gtk-3.0/gtk/gtkrecentchoosermenu.h 4096 | 4097 | 4098 | 4099 | 1491432418 /usr/include/gtk-3.0/gtk/gtkrecentchooserwidget.h 4100 | 4101 | 4102 | 4103 | 1491432418 /usr/include/gtk-3.0/gtk/gtkrender.h 4104 | 4105 | 4106 | 4107 | 4108 | 4109 | 4110 | 1491432418 /usr/include/gtk-3.0/gtk/gtkrevealer.h 4111 | 4112 | 4113 | 1491432418 /usr/include/gtk-3.0/gtk/gtkscale.h 4114 | 4115 | 4116 | 1491432418 /usr/include/gtk-3.0/gtk/gtkscalebutton.h 4117 | 4118 | 4119 | 1491432418 /usr/include/gtk-3.0/gtk/gtkscrollable.h 4120 | 4121 | 4122 | 4123 | 4124 | 4125 | 1491432418 /usr/include/gtk-3.0/gtk/gtkscrollbar.h 4126 | 4127 | 4128 | 1491432418 /usr/include/gtk-3.0/gtk/gtkscrolledwindow.h 4129 | 4130 | 4131 | 1491432418 /usr/include/gtk-3.0/gtk/gtksearchbar.h 4132 | 4133 | 4134 | 1491432418 /usr/include/gtk-3.0/gtk/gtksearchentry.h 4135 | 4136 | 4137 | 1491432418 /usr/include/gtk-3.0/gtk/gtkseparator.h 4138 | 4139 | 4140 | 1491432418 /usr/include/gtk-3.0/gtk/gtkseparatormenuitem.h 4141 | 4142 | 4143 | 1491432418 /usr/include/gtk-3.0/gtk/gtkseparatortoolitem.h 4144 | 4145 | 4146 | 1491432418 /usr/include/gtk-3.0/gtk/gtksettings.h 4147 | 4148 | 4149 | 4150 | 1491432418 /usr/include/gtk-3.0/gtk/gtkshow.h 4151 | 4152 | 1491432418 /usr/include/gtk-3.0/gtk/gtkstacksidebar.h 4153 | 4154 | 4155 | 4156 | 1491432418 /usr/include/gtk-3.0/gtk/gtkstack.h 4157 | 4158 | 4159 | 1491432418 /usr/include/gtk-3.0/gtk/gtksizerequest.h 4160 | 4161 | 4162 | 1491432418 /usr/include/gtk-3.0/gtk/gtkspinbutton.h 4163 | 4164 | 4165 | 1491432418 /usr/include/gtk-3.0/gtk/gtkspinner.h 4166 | 4167 | 4168 | 1491432418 /usr/include/gtk-3.0/gtk/gtkstackswitcher.h 4169 | 4170 | 4171 | 4172 | 1491432418 /usr/include/gtk-3.0/gtk/gtkstatusbar.h 4173 | 4174 | 4175 | 1491432418 /usr/include/gtk-3.0/gtk/gtkswitch.h 4176 | 4177 | 4178 | 1491432418 /usr/include/gtk-3.0/gtk/gtktextbuffer.h 4179 | 4180 | 4181 | 4182 | 4183 | 4184 | 4185 | 4186 | 1491432418 /usr/include/gtk-3.0/gtk/gtktexttagtable.h 4187 | 4188 | 4189 | 1491432418 /usr/include/gtk-3.0/gtk/gtktextmark.h 4190 | 4191 | 1491432418 /usr/include/gtk-3.0/gtk/gtktextbufferrichtext.h 4192 | 4193 | 4194 | 1491432418 /usr/include/gtk-3.0/gtk/gtktextview.h 4195 | 4196 | 4197 | 4198 | 4199 | 4200 | 1491432418 /usr/include/gtk-3.0/gtk/gtktoolbar.h 4201 | 4202 | 4203 | 4204 | 1491432418 /usr/include/gtk-3.0/gtk/gtktoolitemgroup.h 4205 | 4206 | 4207 | 4208 | 1491432418 /usr/include/gtk-3.0/gtk/gtktoolpalette.h 4209 | 4210 | 4211 | 4212 | 4213 | 1491432418 /usr/include/gtk-3.0/gtk/gtktoolshell.h 4214 | 4215 | 4216 | 4217 | 4218 | 1491432418 /usr/include/gtk-3.0/gtk/gtktestutils.h 4219 | 4220 | 4221 | 4222 | 1491432418 /usr/include/gtk-3.0/gtk/gtktreednd.h 4223 | 4224 | 4225 | 4226 | 1491432418 /usr/include/gtk-3.0/gtk/gtktreemodelsort.h 4227 | 4228 | 4229 | 4230 | 4231 | 1491432418 /usr/include/gtk-3.0/gtk/gtktreeselection.h 4232 | 4233 | 4234 | 1491432418 /usr/include/gtk-3.0/gtk/gtktreestore.h 4235 | 4236 | 4237 | 4238 | 4239 | 4240 | 1491432418 /usr/include/gtk-3.0/gtk/gtktypebuiltins.h 4241 | 4242 | 4243 | 4244 | 1491432418 /usr/include/gtk-3.0/gtk/gtkversion.h 4245 | 4246 | 1491432418 /usr/include/gtk-3.0/gtk/gtkviewport.h 4247 | 4248 | 4249 | 1491432418 /usr/include/gtk-3.0/gtk/gtkvolumebutton.h 4250 | 4251 | 4252 | 1491432418 /usr/include/gtk-3.0/gtk/gtkwidgetpath.h 4253 | 4254 | 4255 | 4256 | 4257 | 4258 | 1491432418 /usr/include/gtk-3.0/gtk/gtkwindowgroup.h 4259 | "gtkwindow.h" 4260 | 4261 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkarrow.h 4262 | 4263 | 4264 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkactivatable.h 4265 | 4266 | 4267 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkaction.h 4268 | 4269 | 4270 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkactiongroup.h 4271 | 4272 | 4273 | 4274 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkstock.h 4275 | 4276 | 4277 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h 4278 | 4279 | 4280 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h 4281 | 4282 | 4283 | 4284 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h 4285 | 4286 | 4287 | 4288 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkfontsel.h 4289 | 4290 | 4291 | 4292 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkgradient.h 4293 | 4294 | 4295 | 4296 | 4297 | 4298 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtksymboliccolor.h 4299 | 4300 | 4301 | 4302 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h 4303 | 4304 | 4305 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkhbbox.h 4306 | 4307 | 4308 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h 4309 | 4310 | 4311 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkhpaned.h 4312 | 4313 | 4314 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkhsv.h 4315 | 4316 | 4317 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkhscale.h 4318 | 4319 | 4320 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h 4321 | 4322 | 4323 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkhseparator.h 4324 | 4325 | 4326 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h 4327 | 4328 | 4329 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtknumerableicon.h 4330 | 4331 | 4332 | 4333 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkradioaction.h 4334 | 4335 | 4336 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtktoggleaction.h 4337 | 4338 | 4339 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkrc.h 4340 | 4341 | 4342 | 4343 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkrecentaction.h 4344 | 4345 | 4346 | 4347 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkstatusicon.h 4348 | 4349 | 4350 | 4351 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h 4352 | 4353 | 4354 | 4355 | 4356 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtktable.h 4357 | 4358 | 4359 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h 4360 | 4361 | 4362 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkthemingengine.h 4363 | 4364 | 4365 | 4366 | 4367 | 4368 | 4369 | 4370 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkuimanager.h 4371 | 4372 | 4373 | 4374 | 4375 | 4376 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkvbbox.h 4377 | 4378 | 4379 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h 4380 | 4381 | 4382 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkvpaned.h 4383 | 4384 | 4385 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkvscale.h 4386 | 4387 | 4388 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h 4389 | 4390 | 4391 | 1491432418 /usr/include/gtk-3.0/gtk/deprecated/gtkvseparator.h 4392 | 4393 | 4394 | 1491432418 /usr/include/gtk-3.0/gtk/gtk-autocleanups.h 4395 | 4396 | 1491432416 /usr/include/gtk-3.0/gdk/gdkx.h 4397 | 4398 | 4399 | 4400 | 4401 | 4402 | 4403 | 4404 | 4405 | 4406 | 4407 | 4408 | 4409 | 4410 | 4411 | 4412 | 4413 | 4414 | 4415 | 4416 | 4417 | 4418 | 4419 | 4420 | 4421 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11applaunchcontext.h 4422 | 4423 | 4424 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11cursor.h 4425 | 4426 | 4427 | 4428 | 4429 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11device.h 4430 | 4431 | 4432 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11device-core.h 4433 | 4434 | 4435 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11device-xi2.h 4436 | 4437 | 4438 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager.h 4439 | 4440 | 4441 | 4442 | 4443 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-core.h 4444 | 4445 | 4446 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-xi2.h 4447 | 4448 | 4449 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11display.h 4450 | 4451 | 4452 | 4453 | 4454 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11displaymanager.h 4455 | 4456 | 4457 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11dnd.h 4458 | 4459 | 4460 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11glcontext.h 4461 | 4462 | 4463 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11keys.h 4464 | 4465 | 4466 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11property.h 4467 | 4468 | 4469 | 4470 | 4471 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11screen.h 4472 | 4473 | 4474 | 4475 | 4476 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11selection.h 4477 | 4478 | 4479 | 4480 | 4481 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11utils.h 4482 | 4483 | 4484 | 4485 | 4486 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11visual.h 4487 | 4488 | 4489 | 4490 | 4491 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx11window.h 4492 | 4493 | 4494 | 4495 | 4496 | 1491432416 /usr/include/gtk-3.0/gdk/x11/gdkx-autocleanups.h 4497 | 4498 | 1519163620 /usr/lib/x86_64-linux-gnu/wx/include/gtk2-unicode-3.1-unofficial/wx/setup.h 4499 | 4500 | 1501681742 /usr/include/gtk-2.0/gtk/gtk.h 4501 | 4502 | 4503 | 4504 | 4505 | 4506 | 4507 | 4508 | 4509 | 4510 | 4511 | 4512 | 4513 | 4514 | 4515 | 4516 | 4517 | 4518 | 4519 | 4520 | 4521 | 4522 | 4523 | 4524 | 4525 | 4526 | 4527 | 4528 | 4529 | 4530 | 4531 | 4532 | 4533 | 4534 | 4535 | 4536 | 4537 | 4538 | 4539 | 4540 | 4541 | 4542 | 4543 | 4544 | 4545 | 4546 | 4547 | 4548 | 4549 | 4550 | 4551 | 4552 | 4553 | 4554 | 4555 | 4556 | 4557 | 4558 | 4559 | 4560 | 4561 | 4562 | 4563 | 4564 | 4565 | 4566 | 4567 | 4568 | 4569 | 4570 | 4571 | 4572 | 4573 | 4574 | 4575 | 4576 | 4577 | 4578 | 4579 | 4580 | 4581 | 4582 | 4583 | 4584 | 4585 | 4586 | 4587 | 4588 | 4589 | 4590 | 4591 | 4592 | 4593 | 4594 | 4595 | 4596 | 4597 | 4598 | 4599 | 4600 | 4601 | 4602 | 4603 | 4604 | 4605 | 4606 | 4607 | 4608 | 4609 | 4610 | 4611 | 4612 | 4613 | 4614 | 4615 | 4616 | 4617 | 4618 | 4619 | 4620 | 4621 | 4622 | 4623 | 4624 | 4625 | 4626 | 4627 | 4628 | 4629 | 4630 | 4631 | 4632 | 4633 | 4634 | 4635 | 4636 | 4637 | 4638 | 4639 | 4640 | 4641 | 4642 | 4643 | 4644 | 4645 | 4646 | 4647 | 4648 | 4649 | 4650 | 4651 | 4652 | 4653 | 4654 | 4655 | 4656 | 4657 | 4658 | 4659 | 4660 | 4661 | 4662 | 4663 | 4664 | 4665 | 4666 | 4667 | 4668 | 4669 | 4670 | 4671 | 4672 | 4673 | 4674 | 4675 | 4676 | 4677 | 4678 | 4679 | 4680 | 4681 | 4682 | 4683 | 4684 | 4685 | 4686 | 4687 | 4688 | 4689 | 4690 | 4691 | 4692 | 4693 | 4694 | 4695 | 4696 | 4697 | 4698 | 4699 | 4700 | 4701 | 4702 | 4703 | 4704 | 4705 | 4706 | 4707 | 4708 | 4709 | 4710 | 4711 | 1501681736 /usr/include/gtk-2.0/gdk/gdk.h 4712 | 4713 | 4714 | 4715 | 4716 | 4717 | 4718 | 4719 | 4720 | 4721 | 4722 | 4723 | 4724 | 4725 | 4726 | 4727 | 4728 | 4729 | 4730 | 4731 | 4732 | 4733 | 4734 | 4735 | 4736 | 4737 | 4738 | 4739 | 4740 | 4741 | 1501681736 /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h 4742 | 4743 | 4744 | 4745 | 1501681736 /usr/include/gtk-2.0/gdk/gdkscreen.h 4746 | 4747 | "gdk/gdktypes.h" 4748 | "gdk/gdkdisplay.h" 4749 | 4750 | 1501681736 /usr/include/gtk-2.0/gdk/gdktypes.h 4751 | 4752 | 4753 | 4754 | 4755 | 4756 | 1501681735 /usr/lib/x86_64-linux-gnu/gtk-2.0/include/gdkconfig.h 4757 | 4758 | 1501681736 /usr/include/gtk-2.0/gdk/gdkdisplay.h 4759 | 4760 | 4761 | 4762 | 1501681736 /usr/include/gtk-2.0/gdk/gdkevents.h 4763 | 4764 | 4765 | 4766 | 4767 | 4768 | 1501681736 /usr/include/gtk-2.0/gdk/gdkcolor.h 4769 | 4770 | 4771 | 4772 | 1501681736 /usr/include/gtk-2.0/gdk/gdkdnd.h 4773 | 4774 | 4775 | 1501681736 /usr/include/gtk-2.0/gdk/gdkinput.h 4776 | 4777 | 4778 | 1501681736 /usr/include/gtk-2.0/gdk/gdkcairo.h 4779 | 4780 | 4781 | 4782 | 4783 | 1501681736 /usr/include/gtk-2.0/gdk/gdkpixbuf.h 4784 | 4785 | 4786 | 4787 | 4788 | 4789 | 1501681736 /usr/include/gtk-2.0/gdk/gdkrgb.h 4790 | 4791 | 4792 | 1501681736 /usr/include/gtk-2.0/gdk/gdkcursor.h 4793 | 4794 | 4795 | 4796 | 1501681736 /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h 4797 | 4798 | 4799 | 4800 | 1501681736 /usr/include/gtk-2.0/gdk/gdkdrawable.h 4801 | 4802 | 4803 | 4804 | 4805 | 4806 | 4807 | 1501681736 /usr/include/gtk-2.0/gdk/gdkgc.h 4808 | 4809 | 4810 | 4811 | 1501681736 /usr/include/gtk-2.0/gdk/gdkenumtypes.h 4812 | 4813 | 4814 | 1501681736 /usr/include/gtk-2.0/gdk/gdkfont.h 4815 | 4816 | 4817 | 4818 | 1501681736 /usr/include/gtk-2.0/gdk/gdkimage.h 4819 | 4820 | 4821 | 1501681736 /usr/include/gtk-2.0/gdk/gdkkeys.h 4822 | 4823 | 4824 | 1501681736 /usr/include/gtk-2.0/gdk/gdkpango.h 4825 | 4826 | 4827 | 1501681736 /usr/include/gtk-2.0/gdk/gdkpixmap.h 4828 | 4829 | 4830 | 4831 | 1501681736 /usr/include/gtk-2.0/gdk/gdkproperty.h 4832 | 4833 | 4834 | 1501681736 /usr/include/gtk-2.0/gdk/gdkregion.h 4835 | 4836 | 4837 | 1501681736 /usr/include/gtk-2.0/gdk/gdkselection.h 4838 | 4839 | 4840 | 1501681736 /usr/include/gtk-2.0/gdk/gdkspawn.h 4841 | 4842 | 4843 | 1501681736 /usr/include/gtk-2.0/gdk/gdktestutils.h 4844 | 4845 | 4846 | 1501681736 /usr/include/gtk-2.0/gdk/gdkwindow.h 4847 | 4848 | 4849 | 4850 | 4851 | 1501681736 /usr/include/gtk-2.0/gdk/gdkvisual.h 4852 | 4853 | 4854 | 1501681742 /usr/include/gtk-2.0/gtk/gtkaboutdialog.h 4855 | 4856 | 4857 | 1501681742 /usr/include/gtk-2.0/gtk/gtkdialog.h 4858 | 4859 | 4860 | 1501681742 /usr/include/gtk-2.0/gtk/gtkwindow.h 4861 | 4862 | 4863 | 4864 | 1501681742 /usr/include/gtk-2.0/gtk/gtkaccelgroup.h 4865 | 4866 | 4867 | 4868 | 1501681742 /usr/include/gtk-2.0/gtk/gtkenums.h 4869 | 4870 | 4871 | 1501681742 /usr/include/gtk-2.0/gtk/gtkbin.h 4872 | 4873 | 4874 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcontainer.h 4875 | 4876 | 4877 | 4878 | 1501681742 /usr/include/gtk-2.0/gtk/gtkwidget.h 4879 | 4880 | 4881 | 4882 | 4883 | 4884 | 4885 | 4886 | 4887 | 1501681742 /usr/include/gtk-2.0/gtk/gtkobject.h 4888 | 4889 | 4890 | 4891 | 4892 | 4893 | 1501681742 /usr/include/gtk-2.0/gtk/gtktypeutils.h 4894 | 4895 | 4896 | 1501681742 /usr/include/gtk-2.0/gtk/gtktypebuiltins.h 4897 | 4898 | 4899 | 1501681742 /usr/include/gtk-2.0/gtk/gtkdebug.h 4900 | 4901 | 4902 | 1501681742 /usr/include/gtk-2.0/gtk/gtkadjustment.h 4903 | 4904 | 4905 | 4906 | 1501681742 /usr/include/gtk-2.0/gtk/gtkstyle.h 4907 | 4908 | 4909 | 4910 | 1501681742 /usr/include/gtk-2.0/gtk/gtksettings.h 4911 | 4912 | 4913 | 1501681742 /usr/include/gtk-2.0/gtk/gtkrc.h 4914 | 4915 | 4916 | 1501681742 /usr/include/gtk-2.0/gtk/gtkaccellabel.h 4917 | 4918 | 4919 | 1501681742 /usr/include/gtk-2.0/gtk/gtklabel.h 4920 | 4921 | 4922 | 4923 | 4924 | 1501681742 /usr/include/gtk-2.0/gtk/gtkmisc.h 4925 | 4926 | 4927 | 1501681742 /usr/include/gtk-2.0/gtk/gtkmenu.h 4928 | 4929 | 4930 | 4931 | 1501681742 /usr/include/gtk-2.0/gtk/gtkmenushell.h 4932 | 4933 | 4934 | 1501681742 /usr/include/gtk-2.0/gtk/gtkaccelmap.h 4935 | 4936 | 4937 | 1501681742 /usr/include/gtk-2.0/gtk/gtkaccessible.h 4938 | 4939 | 4940 | 4941 | 1501681742 /usr/include/gtk-2.0/gtk/gtkaction.h 4942 | 4943 | 4944 | 1501681742 /usr/include/gtk-2.0/gtk/gtkactiongroup.h 4945 | 4946 | 4947 | 4948 | 1501681742 /usr/include/gtk-2.0/gtk/gtkactivatable.h 4949 | 4950 | 4951 | 4952 | 1501681742 /usr/include/gtk-2.0/gtk/gtkalignment.h 4953 | 4954 | 4955 | 1501681742 /usr/include/gtk-2.0/gtk/gtkarrow.h 4956 | 4957 | 4958 | 1501681742 /usr/include/gtk-2.0/gtk/gtkaspectframe.h 4959 | 4960 | 4961 | 1501681742 /usr/include/gtk-2.0/gtk/gtkframe.h 4962 | 4963 | 4964 | 1501681742 /usr/include/gtk-2.0/gtk/gtkassistant.h 4965 | 4966 | 4967 | 1501681742 /usr/include/gtk-2.0/gtk/gtkbbox.h 4968 | 4969 | 4970 | 1501681742 /usr/include/gtk-2.0/gtk/gtkbox.h 4971 | 4972 | 4973 | 1501681742 /usr/include/gtk-2.0/gtk/gtkbindings.h 4974 | 4975 | 4976 | 4977 | 1501681742 /usr/include/gtk-2.0/gtk/gtkbuildable.h 4978 | 4979 | 4980 | 4981 | 1501681742 /usr/include/gtk-2.0/gtk/gtkbuilder.h 4982 | 4983 | 4984 | 4985 | 1501681742 /usr/include/gtk-2.0/gtk/gtkbutton.h 4986 | 4987 | 4988 | 4989 | 1501681742 /usr/include/gtk-2.0/gtk/gtkimage.h 4990 | 4991 | 4992 | 4993 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcalendar.h 4994 | 4995 | 4996 | 4997 | 1501681742 /usr/include/gtk-2.0/gtk/gtksignal.h 4998 | 4999 | 5000 | 5001 | 5002 | 5003 | 1501681742 /usr/include/gtk-2.0/gtk/gtkmarshal.h 5004 | 5005 | 5006 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcelleditable.h 5007 | 5008 | 5009 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcelllayout.h 5010 | 5011 | 5012 | 5013 | 5014 | 5015 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcellrenderer.h 5016 | 5017 | 5018 | 1501681742 /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h 5019 | 5020 | 5021 | 5022 | 5023 | 5024 | 1501681742 /usr/include/gtk-2.0/gtk/gtktreemodel.h 5025 | 5026 | 5027 | 5028 | 1501681742 /usr/include/gtk-2.0/gtk/gtktreesortable.h 5029 | 5030 | 5031 | 5032 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h 5033 | 5034 | 5035 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h 5036 | 5037 | 5038 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h 5039 | 5040 | 5041 | 5042 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h 5043 | 5044 | 5045 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h 5046 | 5047 | 5048 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h 5049 | 5050 | 5051 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcellrendererspinner.h 5052 | 5053 | 5054 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h 5055 | 5056 | 5057 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcellview.h 5058 | 5059 | 5060 | 5061 | 5062 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcheckbutton.h 5063 | 5064 | 5065 | 1501681742 /usr/include/gtk-2.0/gtk/gtktogglebutton.h 5066 | 5067 | 5068 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h 5069 | 5070 | 5071 | 1501681742 /usr/include/gtk-2.0/gtk/gtkmenuitem.h 5072 | 5073 | 5074 | 1501681742 /usr/include/gtk-2.0/gtk/gtkitem.h 5075 | 5076 | 5077 | 1501681742 /usr/include/gtk-2.0/gtk/gtkclipboard.h 5078 | 5079 | 5080 | 1501681742 /usr/include/gtk-2.0/gtk/gtkselection.h 5081 | 5082 | 5083 | 5084 | 1501681742 /usr/include/gtk-2.0/gtk/gtktextiter.h 5085 | 5086 | 5087 | 5088 | 1501681742 /usr/include/gtk-2.0/gtk/gtktexttag.h 5089 | 5090 | 5091 | 5092 | 5093 | 1501681742 /usr/include/gtk-2.0/gtk/gtktextchild.h 5094 | 5095 | 5096 | 5097 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcolorbutton.h 5098 | 5099 | 5100 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcolorsel.h 5101 | 5102 | 5103 | 5104 | 1501681742 /usr/include/gtk-2.0/gtk/gtkvbox.h 5105 | 5106 | 5107 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h 5108 | 5109 | 5110 | 5111 | 5112 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcombobox.h 5113 | 5114 | 5115 | 5116 | 5117 | 1501681742 /usr/include/gtk-2.0/gtk/gtktreeview.h 5118 | 5119 | 5120 | 5121 | 5122 | 5123 | 5124 | 1501681742 /usr/include/gtk-2.0/gtk/gtkdnd.h 5125 | 5126 | 5127 | 5128 | 1501681742 /usr/include/gtk-2.0/gtk/gtkentry.h 5129 | 5130 | 5131 | 5132 | 5133 | 5134 | 5135 | 5136 | 5137 | 1501681742 /usr/include/gtk-2.0/gtk/gtkeditable.h 5138 | 5139 | 5140 | 1501681742 /usr/include/gtk-2.0/gtk/gtkimcontext.h 5141 | 5142 | 5143 | 5144 | 1501681742 /usr/include/gtk-2.0/gtk/gtkentrybuffer.h 5145 | 5146 | 5147 | 1501681742 /usr/include/gtk-2.0/gtk/gtkentrycompletion.h 5148 | 5149 | 5150 | 5151 | 5152 | 5153 | 1501681742 /usr/include/gtk-2.0/gtk/gtkliststore.h 5154 | 5155 | 5156 | 5157 | 5158 | 1501681742 /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h 5159 | 5160 | 5161 | 5162 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h 5163 | 5164 | 5165 | 5166 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcomboboxtext.h 5167 | 5168 | 5169 | 1501681742 /usr/include/gtk-2.0/gtk/gtkdrawingarea.h 5170 | 5171 | 5172 | 1501681742 /usr/include/gtk-2.0/gtk/gtkeventbox.h 5173 | 5174 | 5175 | 1501681742 /usr/include/gtk-2.0/gtk/gtkexpander.h 5176 | 5177 | 5178 | 1501681742 /usr/include/gtk-2.0/gtk/gtkfixed.h 5179 | 5180 | 5181 | 1501681742 /usr/include/gtk-2.0/gtk/gtkfilechooser.h 5182 | 5183 | 5184 | 5185 | 1501681742 /usr/include/gtk-2.0/gtk/gtkfilefilter.h 5186 | 5187 | 5188 | 1501681742 /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h 5189 | 5190 | 5191 | 5192 | 1501681742 /usr/include/gtk-2.0/gtk/gtkhbox.h 5193 | 5194 | 5195 | 1501681742 /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h 5196 | 5197 | 5198 | 5199 | 1501681742 /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h 5200 | 5201 | 5202 | 5203 | 1501681742 /usr/include/gtk-2.0/gtk/gtkfontbutton.h 5204 | 5205 | 5206 | 1501681742 /usr/include/gtk-2.0/gtk/gtkfontsel.h 5207 | 5208 | 5209 | 5210 | 1501681742 /usr/include/gtk-2.0/gtk/gtkgc.h 5211 | 5212 | 5213 | 1501681742 /usr/include/gtk-2.0/gtk/gtkhandlebox.h 5214 | 5215 | 5216 | 1501681742 /usr/include/gtk-2.0/gtk/gtkhbbox.h 5217 | 5218 | 5219 | 1501681742 /usr/include/gtk-2.0/gtk/gtkhpaned.h 5220 | 5221 | 5222 | 1501681742 /usr/include/gtk-2.0/gtk/gtkpaned.h 5223 | 5224 | 5225 | 1501681742 /usr/include/gtk-2.0/gtk/gtkhruler.h 5226 | 5227 | 5228 | 1501681742 /usr/include/gtk-2.0/gtk/gtkruler.h 5229 | 5230 | 5231 | 1501681742 /usr/include/gtk-2.0/gtk/gtkhscale.h 5232 | 5233 | 5234 | 1501681742 /usr/include/gtk-2.0/gtk/gtkscale.h 5235 | 5236 | 5237 | 1501681742 /usr/include/gtk-2.0/gtk/gtkrange.h 5238 | 5239 | 5240 | 5241 | 1501681742 /usr/include/gtk-2.0/gtk/gtkhscrollbar.h 5242 | 5243 | 5244 | 1501681742 /usr/include/gtk-2.0/gtk/gtkscrollbar.h 5245 | 5246 | 5247 | 1501681742 /usr/include/gtk-2.0/gtk/gtkhseparator.h 5248 | 5249 | 5250 | 1501681742 /usr/include/gtk-2.0/gtk/gtkseparator.h 5251 | 5252 | 5253 | 1501681742 /usr/include/gtk-2.0/gtk/gtkhsv.h 5254 | 5255 | 5256 | 1501681742 /usr/include/gtk-2.0/gtk/gtkiconfactory.h 5257 | 5258 | 5259 | 5260 | 1501681742 /usr/include/gtk-2.0/gtk/gtkicontheme.h 5261 | 5262 | 5263 | 5264 | 1501681742 /usr/include/gtk-2.0/gtk/gtkiconview.h 5265 | 5266 | 5267 | 5268 | 5269 | 5270 | 5271 | 1501681742 /usr/include/gtk-2.0/gtk/gtktooltip.h 5272 | 5273 | 5274 | 1501681742 /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h 5275 | 5276 | 5277 | 1501681742 /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h 5278 | 5279 | 5280 | 1501681742 /usr/include/gtk-2.0/gtk/gtkimmulticontext.h 5281 | 5282 | 5283 | 5284 | 1501681742 /usr/include/gtk-2.0/gtk/gtkinfobar.h 5285 | 5286 | 5287 | 5288 | 1501681742 /usr/include/gtk-2.0/gtk/gtkinvisible.h 5289 | 5290 | 5291 | 1501681742 /usr/include/gtk-2.0/gtk/gtklayout.h 5292 | 5293 | 5294 | 5295 | 1501681742 /usr/include/gtk-2.0/gtk/gtklinkbutton.h 5296 | 5297 | 5298 | 1501681742 /usr/include/gtk-2.0/gtk/gtkmain.h 5299 | 5300 | 5301 | 5302 | 5303 | 5304 | 1501681742 /usr/include/gtk-2.0/gtk/gtkmenubar.h 5305 | 5306 | 5307 | 1501681742 /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h 5308 | 5309 | 5310 | 5311 | 1501681742 /usr/include/gtk-2.0/gtk/gtktoolbutton.h 5312 | 5313 | 5314 | 1501681742 /usr/include/gtk-2.0/gtk/gtktoolitem.h 5315 | 5316 | 5317 | 5318 | 5319 | 5320 | 1501681742 /usr/include/gtk-2.0/gtk/gtktooltips.h 5321 | 5322 | 5323 | 5324 | 1501681742 /usr/include/gtk-2.0/gtk/gtksizegroup.h 5325 | 5326 | 5327 | 1501681742 /usr/include/gtk-2.0/gtk/gtkmessagedialog.h 5328 | 5329 | 5330 | 5331 | 1501681742 /usr/include/gtk-2.0/gtk/gtkmodules.h 5332 | 5333 | 5334 | 1501681742 /usr/include/gtk-2.0/gtk/gtkmountoperation.h 5335 | 5336 | 1501681742 /usr/include/gtk-2.0/gtk/gtknotebook.h 5337 | 5338 | 5339 | 1501681742 /usr/include/gtk-2.0/gtk/gtkoffscreenwindow.h 5340 | 5341 | 5342 | 1501681742 /usr/include/gtk-2.0/gtk/gtkorientable.h 5343 | 5344 | 5345 | 1501681742 /usr/include/gtk-2.0/gtk/gtkpagesetup.h 5346 | 5347 | 5348 | 1501681742 /usr/include/gtk-2.0/gtk/gtkpapersize.h 5349 | 5350 | 5351 | 1501681742 /usr/include/gtk-2.0/gtk/gtkplug.h 5352 | 5353 | 5354 | 5355 | 1501681742 /usr/include/gtk-2.0/gtk/gtksocket.h 5356 | 5357 | 5358 | 1501681742 /usr/include/gtk-2.0/gtk/gtkprintcontext.h 5359 | 5360 | 5361 | 5362 | 1501681742 /usr/include/gtk-2.0/gtk/gtkprintoperation.h 5363 | 5364 | 5365 | 5366 | 5367 | 5368 | 5369 | 5370 | 5371 | 1501681742 /usr/include/gtk-2.0/gtk/gtkprintsettings.h 5372 | 5373 | 5374 | 1501681742 /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h 5375 | 5376 | 5377 | 5378 | 1501681742 /usr/include/gtk-2.0/gtk/gtkprogressbar.h 5379 | 5380 | 5381 | 1501681742 /usr/include/gtk-2.0/gtk/gtkprogress.h 5382 | 5383 | 5384 | 5385 | 1501681742 /usr/include/gtk-2.0/gtk/gtkradioaction.h 5386 | 5387 | 5388 | 1501681742 /usr/include/gtk-2.0/gtk/gtktoggleaction.h 5389 | 5390 | 5391 | 1501681742 /usr/include/gtk-2.0/gtk/gtkradiobutton.h 5392 | 5393 | 5394 | 1501681742 /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h 5395 | 5396 | 5397 | 1501681742 /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h 5398 | 5399 | 5400 | 1501681742 /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h 5401 | 5402 | 5403 | 1501681742 /usr/include/gtk-2.0/gtk/gtkrecentaction.h 5404 | 5405 | 5406 | 5407 | 1501681742 /usr/include/gtk-2.0/gtk/gtkrecentmanager.h 5408 | 5409 | 5410 | 5411 | 5412 | 1501681742 /usr/include/gtk-2.0/gtk/gtkrecentchooser.h 5413 | 5414 | 5415 | 5416 | 5417 | 1501681742 /usr/include/gtk-2.0/gtk/gtkrecentfilter.h 5418 | 5419 | 5420 | 1501681742 /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h 5421 | 5422 | 5423 | 5424 | 1501681742 /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h 5425 | 5426 | 5427 | 5428 | 1501681742 /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h 5429 | 5430 | 5431 | 5432 | 1501681742 /usr/include/gtk-2.0/gtk/gtkscalebutton.h 5433 | 5434 | 5435 | 1501681742 /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h 5436 | 5437 | 5438 | 5439 | 5440 | 1501681742 /usr/include/gtk-2.0/gtk/gtkvscrollbar.h 5441 | 5442 | 5443 | 1501681742 /usr/include/gtk-2.0/gtk/gtkviewport.h 5444 | 5445 | 5446 | 5447 | 1501681742 /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h 5448 | 5449 | 5450 | 1501681742 /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h 5451 | 5452 | 5453 | 1501681742 /usr/include/gtk-2.0/gtk/gtkshow.h 5454 | 5455 | 1501681742 /usr/include/gtk-2.0/gtk/gtkspinbutton.h 5456 | 5457 | 5458 | 5459 | 1501681742 /usr/include/gtk-2.0/gtk/gtkspinner.h 5460 | 5461 | 5462 | 1501681742 /usr/include/gtk-2.0/gtk/gtkstatusbar.h 5463 | 5464 | 5465 | 1501681742 /usr/include/gtk-2.0/gtk/gtkstatusicon.h 5466 | 5467 | 5468 | 5469 | 1501681742 /usr/include/gtk-2.0/gtk/gtkstock.h 5470 | 5471 | 5472 | 5473 | 1501681742 /usr/include/gtk-2.0/gtk/gtktable.h 5474 | 5475 | 5476 | 1501681742 /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h 5477 | 5478 | 5479 | 1501681742 /usr/include/gtk-2.0/gtk/gtktextbuffer.h 5480 | 5481 | 5482 | 5483 | 5484 | 5485 | 5486 | 5487 | 1501681742 /usr/include/gtk-2.0/gtk/gtktexttagtable.h 5488 | 5489 | 5490 | 1501681742 /usr/include/gtk-2.0/gtk/gtktextmark.h 5491 | 5492 | 1501681742 /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h 5493 | 5494 | 5495 | 1501681742 /usr/include/gtk-2.0/gtk/gtktextview.h 5496 | 5497 | 5498 | 5499 | 5500 | 5501 | 1501681742 /usr/include/gtk-2.0/gtk/gtktoolbar.h 5502 | 5503 | 5504 | 5505 | 5506 | 5507 | 5508 | 1501681742 /usr/include/gtk-2.0/gtk/gtkpixmap.h 5509 | 5510 | 5511 | 1501681742 /usr/include/gtk-2.0/gtk/gtktoolitemgroup.h 5512 | 5513 | 5514 | 5515 | 1501681742 /usr/include/gtk-2.0/gtk/gtktoolpalette.h 5516 | 5517 | 5518 | 5519 | 5520 | 1501681742 /usr/include/gtk-2.0/gtk/gtktoolshell.h 5521 | 5522 | 5523 | 5524 | 5525 | 1501681742 /usr/include/gtk-2.0/gtk/gtktestutils.h 5526 | 5527 | 1501681742 /usr/include/gtk-2.0/gtk/gtktreednd.h 5528 | 5529 | 5530 | 5531 | 1501681742 /usr/include/gtk-2.0/gtk/gtktreemodelsort.h 5532 | 5533 | 5534 | 5535 | 5536 | 1501681742 /usr/include/gtk-2.0/gtk/gtktreeselection.h 5537 | 5538 | 5539 | 1501681742 /usr/include/gtk-2.0/gtk/gtktreestore.h 5540 | 5541 | 5542 | 5543 | 5544 | 5545 | 1501681742 /usr/include/gtk-2.0/gtk/gtkuimanager.h 5546 | 5547 | 5548 | 5549 | 5550 | 5551 | 1501681742 /usr/include/gtk-2.0/gtk/gtkvbbox.h 5552 | 5553 | 5554 | 1501681742 /usr/include/gtk-2.0/gtk/gtkversion.h 5555 | 5556 | 1501681742 /usr/include/gtk-2.0/gtk/gtkvolumebutton.h 5557 | 5558 | 5559 | 1501681742 /usr/include/gtk-2.0/gtk/gtkvpaned.h 5560 | 5561 | 5562 | 1501681742 /usr/include/gtk-2.0/gtk/gtkvruler.h 5563 | 5564 | 5565 | 1501681742 /usr/include/gtk-2.0/gtk/gtkvscale.h 5566 | 5567 | 5568 | 1501681742 /usr/include/gtk-2.0/gtk/gtkvseparator.h 5569 | 5570 | 5571 | 1501681742 /usr/include/gtk-2.0/gtk/gtktext.h 5572 | 5573 | 5574 | 1501681742 /usr/include/gtk-2.0/gtk/gtkoldeditable.h 5575 | 5576 | 5577 | 1501681742 /usr/include/gtk-2.0/gtk/gtktree.h 5578 | 5579 | 5580 | 1501681742 /usr/include/gtk-2.0/gtk/gtktreeitem.h 5581 | 5582 | 5583 | 1501681742 /usr/include/gtk-2.0/gtk/gtkclist.h 5584 | 5585 | 5586 | 5587 | 5588 | 5589 | 5590 | 5591 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcombo.h 5592 | 5593 | 5594 | 1501681742 /usr/include/gtk-2.0/gtk/gtkctree.h 5595 | 5596 | 5597 | 1501681742 /usr/include/gtk-2.0/gtk/gtkcurve.h 5598 | 5599 | 5600 | 1501681742 /usr/include/gtk-2.0/gtk/gtkfilesel.h 5601 | 5602 | 5603 | 1501681742 /usr/include/gtk-2.0/gtk/gtkgamma.h 5604 | 5605 | 5606 | 1501681742 /usr/include/gtk-2.0/gtk/gtkinputdialog.h 5607 | 5608 | 5609 | 1501681742 /usr/include/gtk-2.0/gtk/gtkitemfactory.h 5610 | 5611 | 5612 | 1501681742 /usr/include/gtk-2.0/gtk/gtklist.h 5613 | 5614 | 5615 | 1501681742 /usr/include/gtk-2.0/gtk/gtklistitem.h 5616 | 5617 | 5618 | 1501681742 /usr/include/gtk-2.0/gtk/gtkoptionmenu.h 5619 | 5620 | 5621 | 1501681742 /usr/include/gtk-2.0/gtk/gtkpreview.h 5622 | 5623 | 5624 | 1501681742 /usr/include/gtk-2.0/gtk/gtktipsquery.h 5625 | 5626 | 5627 | 1501681735 /usr/include/gtk-2.0/gdk/gdkx.h 5628 | 5629 | 5630 | 5631 | "gdkprivate-x11.h" 5632 | "gdkscreen-x11.h" 5633 | 5634 | 1501681736 /usr/include/gtk-2.0/gdk/gdkprivate.h 5635 | 5636 | 5637 | 1523230332 /usr/local/include/codeblocks/wxContribItems/wxImagePanel/include/wx/wxImagePanel.h 5638 | 5639 | 5640 | 5641 | 5642 | 5643 | 5644 | 1529355315 source:/home/tomay/Desktop/Projects/wxVLC/imagepanel.cpp 5645 | "wx_pch.h" 5646 | "imagepanel.h" 5647 | 5648 | 1529363482 /home/tomay/Desktop/Projects/wxVLC/imagepanel.h 5649 | 5650 | 5651 | 5652 | 5653 | 5654 | 5655 | 1519163624 /usr/include/wx-3.1-unofficial/wx/popupwin.h 5656 | "wx/defs.h" 5657 | "wx/nonownedwnd.h" 5658 | "wx/msw/popupwin.h" 5659 | "wx/gtk/popupwin.h" 5660 | "wx/gtk1/popupwin.h" 5661 | "wx/x11/popupwin.h" 5662 | "wx/motif/popupwin.h" 5663 | "wx/dfb/popupwin.h" 5664 | "wx/osx/popupwin.h" 5665 | "wx/qt/popupwin.h" 5666 | 5667 | 1519163631 /usr/include/wx-3.1-unofficial/wx/gtk/popupwin.h 5668 | 5669 | -------------------------------------------------------------------------------- /wxVLCApp.cpp: -------------------------------------------------------------------------------- 1 | /*************************************************************** 2 | * Name: wxVLCApp.cpp 3 | * Purpose: Code for Application Class 4 | * Author: Tomay (tomay3000@gmail.com) 5 | * Created: 2018-05-23 6 | * Copyright: (c) Tomay 7 | * License: wxWindows licence 8 | **************************************************************/ 9 | 10 | #include "wx_pch.h" 11 | #include "wxVLCApp.h" 12 | 13 | //(*AppHeaders 14 | #include "wxVLCMain.h" 15 | #include 16 | //*) 17 | 18 | wxIMPLEMENT_APP(wxVLCApp); 19 | 20 | bool wxVLCApp::OnInit() 21 | { 22 | #ifdef GDK_WINDOWING_X11 23 | XInitThreads(); 24 | #endif // GDK_WINDOWING_X11 25 | 26 | //(*AppInitialize 27 | bool wxsOK = true; 28 | wxInitAllImageHandlers(); 29 | if ( wxsOK ) 30 | { 31 | wxVLCFrame *Frame = new wxVLCFrame(NULL); 32 | Frame->Show(); 33 | SetTopWindow(Frame); 34 | } 35 | //*) 36 | return wxsOK; 37 | 38 | } 39 | -------------------------------------------------------------------------------- /wxVLCApp.h: -------------------------------------------------------------------------------- 1 | /*************************************************************** 2 | * Name: wxVLCApp.h 3 | * Purpose: Defines Application Class 4 | * Author: Tomay (tomay3000@gmail.com) 5 | * Created: 2018-05-23 6 | * Copyright: 7 | (c) Tomay 8 | * License: wxWindows licence 9 | **************************************************************/ 10 | 11 | #ifndef WXVLCAPP_H 12 | #define WXVLCAPP_H 13 | 14 | #include 15 | 16 | class wxVLCApp : public wxApp 17 | { 18 | public: 19 | virtual bool OnInit(); 20 | }; 21 | 22 | wxDECLARE_APP(wxVLCApp); 23 | 24 | #endif // WXVLCAPP_H 25 | -------------------------------------------------------------------------------- /wxVLCMain.cpp: -------------------------------------------------------------------------------- 1 | /*************************************************************** 2 | * Name: wxVLCMain.cpp 3 | * Purpose: Code for Application Frame 4 | * Author: Tomay (tomay3000@gmail.com) 5 | * Created: 2018-05-23 6 | * Copyright: (c) Tomay 7 | * License: wxWindows licence 8 | **************************************************************/ 9 | 10 | #include "wx_pch.h" 11 | #include "wxVLCApp.h" 12 | #include "wxVLCMain.h" 13 | #include 14 | #include 15 | 16 | #ifdef __WXGTK__ 17 | #include 18 | #ifdef GDK_WINDOWING_X11 19 | #include 20 | #define GET_XID(window) GDK_WINDOW_XID(window->GTKGetDrawingWindow()) 21 | #endif // GDK_WINDOWING_X11 22 | #endif 23 | 24 | //(*InternalHeaders(wxVLCFrame) 25 | #include 26 | #include 27 | #include 28 | #include 29 | #include 30 | #include 31 | //*) 32 | 33 | //helper functions 34 | enum wxbuildinfoformat 35 | { 36 | short_f, long_f 37 | }; 38 | 39 | wxString wxbuildinfo(wxbuildinfoformat format) 40 | { 41 | wxString wxbuild(wxVERSION_STRING); 42 | 43 | if (format == long_f ) 44 | { 45 | #if defined(__WXMSW__) 46 | wxbuild << _T("-Windows"); 47 | #elif defined(__UNIX__) 48 | wxbuild << _T("-Linux"); 49 | #endif 50 | 51 | #if wxUSE_UNICODE 52 | wxbuild << _T("-Unicode build"); 53 | #else 54 | wxbuild << _T("-ANSI build"); 55 | #endif // wxUSE_UNICODE 56 | } 57 | 58 | return wxbuild; 59 | } 60 | 61 | //(*IdInit(wxVLCFrame) 62 | const long wxVLCFrame::ID_PNL_PLAYER = wxNewId(); 63 | const long wxVLCFrame::ID_STATICLINE1 = wxNewId(); 64 | const long wxVLCFrame::ID_STTCTXT_CURRTIME = wxNewId(); 65 | const long wxVLCFrame::ID_SLDR_TIMELINE = wxNewId(); 66 | const long wxVLCFrame::ID_STTCTXT_MOVIELENGTH = wxNewId(); 67 | const long wxVLCFrame::ID_BTN_PLAYPAUSE = wxNewId(); 68 | const long wxVLCFrame::ID_BTN_STOP = wxNewId(); 69 | const long wxVLCFrame::ID_BTN_BACKWARD = wxNewId(); 70 | const long wxVLCFrame::ID_BTN_FORWARD = wxNewId(); 71 | const long wxVLCFrame::ID_STATICTEXT1 = wxNewId(); 72 | const long wxVLCFrame::ID_SLDR_VOLUME = wxNewId(); 73 | const long wxVLCFrame::ID_PNL_CONTROLS = wxNewId(); 74 | const long wxVLCFrame::ID_MENUITEM1 = wxNewId(); 75 | const long wxVLCFrame::idMenuQuit = wxNewId(); 76 | const long wxVLCFrame::idMenuAbout = wxNewId(); 77 | const long wxVLCFrame::ID_STATUSBAR1 = wxNewId(); 78 | const long wxVLCFrame::ID_TIMER1 = wxNewId(); 79 | //*) 80 | 81 | BEGIN_EVENT_TABLE(wxVLCFrame, wxFrame) 82 | //(*EventTable(wxVLCFrame) 83 | //*) 84 | END_EVENT_TABLE() 85 | 86 | wxVLCFrame::wxVLCFrame(wxWindow *parent, wxWindowID id) 87 | { 88 | //(*Initialize(wxVLCFrame) 89 | wxBoxSizer* BoxSizer2; 90 | wxBoxSizer* BoxSizer4; 91 | wxMenu* Menu1; 92 | wxMenu* Menu2; 93 | wxMenuBar* MenuBar1; 94 | wxMenuItem* MenuItem1; 95 | wxMenuItem* MenuItem2; 96 | 97 | Create(parent, wxID_ANY, _("wxVLC Media Player"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_FRAME_STYLE, _T("wxID_ANY")); 98 | SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE)); 99 | { 100 | wxIcon FrameIcon; 101 | FrameIcon.CopyFromBitmap(wxBitmap(wxImage(_T("./res/vlc.ico")))); 102 | SetIcon(FrameIcon); 103 | } 104 | BoxSizer1 = new wxBoxSizer(wxVERTICAL); 105 | Player_Pnl = new wxImagePanel(this, ID_PNL_PLAYER, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL, _T("ID_PNL_PLAYER")); 106 | Player_Pnl->SetStretch(false); 107 | Player_Pnl->SetMinSize(wxSize(-1,300)); 108 | Player_Pnl->SetBackgroundColour(wxColour(0,0,0)); 109 | BoxSizer1->Add(Player_Pnl, 1, wxEXPAND, 5); 110 | StaticLine1 = new wxStaticLine(this, ID_STATICLINE1, wxDefaultPosition, wxSize(10,-1), wxLI_HORIZONTAL, _T("ID_STATICLINE1")); 111 | BoxSizer1->Add(StaticLine1, 0, wxALL|wxEXPAND, 5); 112 | Controls_Pnl = new wxPanel(this, ID_PNL_CONTROLS, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL, _T("ID_PNL_CONTROLS")); 113 | BoxSizer2 = new wxBoxSizer(wxVERTICAL); 114 | BoxSizer3 = new wxBoxSizer(wxHORIZONTAL); 115 | CurrTime_SttcTxt = new wxStaticText(Controls_Pnl, ID_STTCTXT_CURRTIME, _("00:00:00"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STTCTXT_CURRTIME")); 116 | BoxSizer3->Add(CurrTime_SttcTxt, 0, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); 117 | Timeline_Sldr = new wxSlider(Controls_Pnl, ID_SLDR_TIMELINE, 0, 0, 10000, wxDefaultPosition, wxDefaultSize, wxSL_BOTH|wxSL_SELRANGE, wxDefaultValidator, _T("ID_SLDR_TIMELINE")); 118 | Timeline_Sldr->Disable(); 119 | BoxSizer3->Add(Timeline_Sldr, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); 120 | MovieLength_SttcTxt = new wxStaticText(Controls_Pnl, ID_STTCTXT_MOVIELENGTH, _("00:00:00"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STTCTXT_MOVIELENGTH")); 121 | BoxSizer3->Add(MovieLength_SttcTxt, 0, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); 122 | BoxSizer2->Add(BoxSizer3, 0, wxALL|wxEXPAND, 5); 123 | BoxSizer4 = new wxBoxSizer(wxHORIZONTAL); 124 | Play_Pause_Btn = new wxButton(Controls_Pnl, ID_BTN_PLAYPAUSE, _("Play >"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BTN_PLAYPAUSE")); 125 | Play_Pause_Btn->Disable(); 126 | BoxSizer4->Add(Play_Pause_Btn, 0, wxALL|wxEXPAND, 5); 127 | Stop_Btn = new wxButton(Controls_Pnl, ID_BTN_STOP, _("Stop []"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BTN_STOP")); 128 | Stop_Btn->Disable(); 129 | BoxSizer4->Add(Stop_Btn, 0, wxALL|wxEXPAND, 5); 130 | Backward_Btn = new wxButton(Controls_Pnl, ID_BTN_BACKWARD, _("Backward <<"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BTN_BACKWARD")); 131 | Backward_Btn->Disable(); 132 | BoxSizer4->Add(Backward_Btn, 0, wxALL|wxEXPAND, 5); 133 | Forward_Btn = new wxButton(Controls_Pnl, ID_BTN_FORWARD, _("Forward >>"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BTN_FORWARD")); 134 | Forward_Btn->Disable(); 135 | BoxSizer4->Add(Forward_Btn, 0, wxALL|wxEXPAND, 5); 136 | BoxSizer4->Add(-1,-1,1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); 137 | StaticText1 = new wxStaticText(Controls_Pnl, ID_STATICTEXT1, _("Volume"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT1")); 138 | BoxSizer4->Add(StaticText1, 0, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); 139 | Volume_Sldr = new wxSlider(Controls_Pnl, ID_SLDR_VOLUME, 100, 0, 100, wxDefaultPosition, wxDLG_UNIT(Controls_Pnl,wxSize(50,-1)), wxSL_LABELS|wxSL_BOTH, wxDefaultValidator, _T("ID_SLDR_VOLUME")); 140 | BoxSizer4->Add(Volume_Sldr, 0, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); 141 | BoxSizer2->Add(BoxSizer4, 0, wxALL|wxEXPAND, 5); 142 | Controls_Pnl->SetSizer(BoxSizer2); 143 | BoxSizer2->Fit(Controls_Pnl); 144 | BoxSizer2->SetSizeHints(Controls_Pnl); 145 | BoxSizer1->Add(Controls_Pnl, 0, wxEXPAND, 5); 146 | SetSizer(BoxSizer1); 147 | MenuBar1 = new wxMenuBar(); 148 | Menu1 = new wxMenu(); 149 | MenuItem3 = new wxMenuItem(Menu1, ID_MENUITEM1, _("&Open\tCtrl-O"), _("Open the video file"), wxITEM_NORMAL); 150 | Menu1->Append(MenuItem3); 151 | Menu1->AppendSeparator(); 152 | MenuItem1 = new wxMenuItem(Menu1, idMenuQuit, _("Quit\tAlt-F4"), _("Quit the application"), wxITEM_NORMAL); 153 | Menu1->Append(MenuItem1); 154 | MenuBar1->Append(Menu1, _("&File")); 155 | Menu2 = new wxMenu(); 156 | MenuItem2 = new wxMenuItem(Menu2, idMenuAbout, _("About\tF1"), _("Show info about this application"), wxITEM_NORMAL); 157 | Menu2->Append(MenuItem2); 158 | MenuBar1->Append(Menu2, _("Help")); 159 | SetMenuBar(MenuBar1); 160 | StatusBar1 = new wxStatusBar(this, ID_STATUSBAR1, 0, _T("ID_STATUSBAR1")); 161 | int __wxStatusBarWidths_1[1] = { -1 }; 162 | int __wxStatusBarStyles_1[1] = { wxSB_NORMAL }; 163 | StatusBar1->SetFieldsCount(1,__wxStatusBarWidths_1); 164 | StatusBar1->SetStatusStyles(1,__wxStatusBarStyles_1); 165 | SetStatusBar(StatusBar1); 166 | OpenFile_Dlg = new wxFileDialog(this, _("Select an audio/video file"), wxEmptyString, wxEmptyString, _("All files (*.*)|*.*"), wxFD_DEFAULT_STYLE|wxFD_FILE_MUST_EXIST, wxDefaultPosition, wxDefaultSize, _T("wxFileDialog")); 167 | OpenFile_Dlg->Center(); 168 | Timer1.SetOwner(this, ID_TIMER1); 169 | Timer1.Start(3000, true); 170 | BoxSizer1->Fit(this); 171 | BoxSizer1->SetSizeHints(this); 172 | Center(); 173 | 174 | Player_Pnl->Connect(wxEVT_LEFT_DCLICK,(wxObjectEventFunction)&wxVLCFrame::OnToggleFullscreen,0,this); 175 | Player_Pnl->Connect(wxEVT_MOTION,(wxObjectEventFunction)&wxVLCFrame::OnMouseMove,0,this); 176 | Connect(ID_SLDR_TIMELINE,wxEVT_SCROLL_THUMBTRACK,(wxObjectEventFunction)&wxVLCFrame::OnTimelineChanged); 177 | Connect(ID_SLDR_TIMELINE,wxEVT_COMMAND_SLIDER_UPDATED,(wxObjectEventFunction)&wxVLCFrame::OnTimelineChanged); 178 | Connect(ID_BTN_PLAYPAUSE,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&wxVLCFrame::OnPlay_Pause); 179 | Connect(ID_BTN_STOP,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&wxVLCFrame::OnStop); 180 | Connect(ID_BTN_BACKWARD,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&wxVLCFrame::OnBackward); 181 | Connect(ID_BTN_FORWARD,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&wxVLCFrame::OnForward); 182 | Connect(ID_SLDR_VOLUME,wxEVT_SCROLL_THUMBTRACK,(wxObjectEventFunction)&wxVLCFrame::OnVolumeChanged); 183 | Connect(ID_SLDR_VOLUME,wxEVT_COMMAND_SLIDER_UPDATED,(wxObjectEventFunction)&wxVLCFrame::OnVolumeChanged); 184 | Connect(ID_MENUITEM1,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&wxVLCFrame::OnOpen); 185 | Connect(idMenuQuit,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&wxVLCFrame::OnQuit); 186 | Connect(idMenuAbout,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&wxVLCFrame::OnAbout); 187 | Connect(ID_TIMER1,wxEVT_TIMER,(wxObjectEventFunction)&wxVLCFrame::OnTimer1); 188 | //*) 189 | 190 | Controls_Wnd = new wxPopupWindow(this); 191 | BoxSizer = new wxBoxSizer(wxVERTICAL); 192 | Controls_Wnd->SetSizer(BoxSizer); 193 | 194 | Maximize(); 195 | Player_Pnl->LoadFile(_T("./res/vlc.png")); 196 | Player_Pnl->CenterImage(); 197 | 198 | // Setup vlc 199 | vlc_inst = libvlc_new(0, NULL); 200 | media_player = libvlc_media_player_new(vlc_inst); 201 | vlc_evt_man = libvlc_media_player_event_manager(media_player); 202 | libvlc_event_attach(vlc_evt_man, libvlc_MediaPlayerEndReached, ::OnEndReached_VLC, NULL); 203 | libvlc_event_attach(vlc_evt_man, libvlc_MediaPlayerPositionChanged, ::OnPositionChanged_VLC, NULL); 204 | libvlc_event_attach(vlc_evt_man, libvlc_MediaPlayerAudioVolume, ::OnAudioVolumeChanged_VLC, NULL); 205 | 206 | InitVLC(); 207 | } 208 | 209 | wxVLCFrame::~wxVLCFrame() 210 | { 211 | //(*Destroy(wxVLCFrame) 212 | //*) 213 | 214 | Controls_Wnd->Destroy(); 215 | } 216 | 217 | void wxVLCFrame::OnQuit(wxCommandEvent& event) 218 | { 219 | Close(); 220 | } 221 | 222 | void wxVLCFrame::OnAbout(wxCommandEvent& event) 223 | { 224 | wxString build = wxbuildinfo(long_f); 225 | wxString about = _T("wxVLC is a wxWidgets GUI media player that\nuses libVLC framework as its core multimedia engine."); 226 | wxMessageBox(about + _T("\n\nBuilt using:\n") + build, _T("About wxVLC...")); 227 | } 228 | 229 | void wxVLCFrame::OnOpen(wxCommandEvent& event) 230 | { 231 | if (OpenFile_Dlg->ShowModal() == wxID_OK) 232 | { 233 | libvlc_media_t *media; 234 | wxString filename(OpenFile_Dlg->GetPath()); 235 | media = libvlc_media_new_path(vlc_inst, filename.ToUTF8()); 236 | libvlc_media_player_set_media(media_player, media); 237 | Play(); 238 | libvlc_media_release(media); 239 | SetTitle(wxFileName(filename).GetFullName() + _T(" - wxVLC Media Player") /*+ _T(" - ") + wxGetApp().GetAppDisplayName()*/); 240 | } 241 | } 242 | 243 | void wxVLCFrame::InitVLC() 244 | { 245 | #ifdef __WXGTK__ 246 | gtk_widget_realize(Player_Pnl->GetHandle()); 247 | libvlc_media_player_set_xwindow(media_player, GET_XID(Player_Pnl)); 248 | #elif defined(__WXOSX__) 249 | libvlc_media_player_set_nsobject(media_player, Player_Pnl->GetHandle()); 250 | #elif defined(__WXMSW__) 251 | libvlc_media_player_set_hwnd(media_player, Player_Pnl->GetHandle()); 252 | #endif 253 | 254 | libvlc_video_set_mouse_input(media_player, false); 255 | libvlc_video_set_key_input(media_player, false); 256 | } 257 | 258 | void wxVLCFrame::Play() 259 | { 260 | libvlc_media_player_play(media_player); 261 | Play_Pause_Btn->SetLabel(_T("Pause ||")); 262 | Play_Pause_Btn->Enable(); 263 | Stop_Btn->Enable(); 264 | Backward_Btn->Enable(); 265 | Forward_Btn->Enable(); 266 | Timeline_Sldr->Enable(); 267 | } 268 | 269 | void wxVLCFrame::Pause() 270 | { 271 | libvlc_media_player_pause(media_player); 272 | Play_Pause_Btn->SetLabel(_T("Play >")); 273 | } 274 | 275 | void wxVLCFrame::Stop() 276 | { 277 | Pause(); 278 | libvlc_media_player_stop(media_player); 279 | Stop_Btn->Disable(); 280 | Backward_Btn->Disable(); 281 | Forward_Btn->Disable(); 282 | Timeline_Sldr->SetValue(0); 283 | Timeline_Sldr->Disable(); 284 | CurrTime_SttcTxt->SetLabel(_T("00:00:00")); 285 | BoxSizer3->Layout(); 286 | } 287 | 288 | void wxVLCFrame::OnPlay_Pause(wxCommandEvent& event) 289 | { 290 | if (libvlc_media_player_is_playing(media_player)) 291 | Pause(); 292 | else 293 | Play(); 294 | } 295 | 296 | void wxVLCFrame::OnStop(wxCommandEvent& event) 297 | { 298 | Stop(); 299 | } 300 | 301 | void wxVLCFrame::OnVolumeChanged(wxScrollEvent& event) 302 | { 303 | libvlc_audio_set_volume(media_player, Volume_Sldr->GetValue()); 304 | } 305 | 306 | void wxVLCFrame::OnTimelineChanged(wxScrollEvent& event) 307 | { 308 | libvlc_media_player_set_time(media_player, Timeline_Sldr->GetValue() * 1000); 309 | libvlc_time_t currTime = libvlc_media_player_get_time(media_player); 310 | CurrTime_SttcTxt->SetLabel(wxTimeSpan::Milliseconds(currTime).Format()); 311 | BoxSizer3->Layout(); 312 | } 313 | 314 | void wxVLCFrame::OnPositionChanged() 315 | { 316 | libvlc_time_t currTime = libvlc_media_player_get_time(media_player); 317 | CurrTime_SttcTxt->SetLabel(wxTimeSpan::Milliseconds(currTime).Format()); 318 | libvlc_time_t movieLength = libvlc_media_player_get_length(media_player); 319 | Timeline_Sldr->SetMax(movieLength / 1000); 320 | Timeline_Sldr->SetValue(currTime / 1000); 321 | MovieLength_SttcTxt->SetLabel(wxTimeSpan::Milliseconds(movieLength).Format()); 322 | 323 | unsigned width = 0, height = 0; 324 | libvlc_video_get_size(media_player, 0, &width, &height); 325 | int video_track = libvlc_video_get_track(media_player); 326 | int audio_track = libvlc_audio_get_track(media_player); 327 | int subtitle = libvlc_video_get_spu(media_player); 328 | StatusBar1->SetStatusText(wxString::Format(_T("Video size: %d x %d - Video track: %d - Audio track: %d - Subtitle: %d"), 329 | width, height, video_track, audio_track, subtitle)); 330 | 331 | BoxSizer3->Layout(); 332 | } 333 | 334 | void wxVLCFrame::OnAudioVolumeChanged() 335 | { 336 | int volume = libvlc_audio_get_volume(media_player); 337 | Volume_Sldr->SetValue(volume); 338 | } 339 | 340 | void OnPositionChanged_VLC(const libvlc_event_t *event, void *data) 341 | { 342 | wxVLCFrame *mainFrame = ((wxVLCFrame *)wxGetApp().GetTopWindow()); 343 | mainFrame->CallAfter(&wxVLCFrame::OnPositionChanged); 344 | } 345 | 346 | void OnEndReached_VLC(const libvlc_event_t *event, void *data) 347 | { 348 | wxVLCFrame *mainFrame = ((wxVLCFrame *)wxGetApp().GetTopWindow()); 349 | mainFrame->CallAfter(&wxVLCFrame::Stop); 350 | } 351 | 352 | void OnAudioVolumeChanged_VLC(const libvlc_event_t *event, void *data) 353 | { 354 | wxVLCFrame *mainFrame = ((wxVLCFrame *)wxGetApp().GetTopWindow()); 355 | mainFrame->CallAfter(&wxVLCFrame::OnAudioVolumeChanged); 356 | } 357 | 358 | void wxVLCFrame::OnToggleFullscreen(wxMouseEvent& event) 359 | { 360 | libvlc_state_t state = libvlc_media_player_get_state(media_player); 361 | 362 | if (IsFullScreen()) 363 | { 364 | Controls_Wnd->Hide(); 365 | BoxSizer->Detach(Controls_Pnl); 366 | Controls_Pnl->Reparent(this); 367 | BoxSizer1->Add(Controls_Pnl, 0, wxEXPAND, 5); 368 | StaticLine1->Show(); 369 | ShowFullScreen(false); 370 | } 371 | else if (state != libvlc_NothingSpecial /*&& state != libvlc_Ended*/ && state != libvlc_Error) 372 | { 373 | StaticLine1->Hide(); 374 | BoxSizer1->Detach(Controls_Pnl); 375 | Controls_Pnl->Reparent(Controls_Wnd); 376 | BoxSizer->Add(Controls_Pnl, 0, wxEXPAND, 5); 377 | ShowFullScreen(true); 378 | Controls_Wnd->Fit(); 379 | 380 | wxSize ScreenSize = wxGetDisplaySize(); 381 | wxSize Controls_Wnd_Size(Controls_Wnd->GetBestSize()); 382 | Controls_Wnd->SetSize(ScreenSize.GetWidth(), wxDefaultCoord /*Controls_Wnd_Size.GetHeight()*/); 383 | Controls_Wnd->Position(wxPoint(0, ScreenSize.y), wxSize()); 384 | } 385 | } 386 | 387 | void wxVLCFrame::OnBackward(wxCommandEvent& event) 388 | { 389 | libvlc_time_t currTime = libvlc_media_player_get_time(media_player); 390 | currTime -= 60000; 391 | 392 | if (currTime < 0) 393 | currTime = 0; 394 | 395 | libvlc_media_player_set_time(media_player, currTime); 396 | OnPositionChanged(); 397 | } 398 | 399 | void wxVLCFrame::OnForward(wxCommandEvent& event) 400 | { 401 | libvlc_time_t currTime = libvlc_media_player_get_time(media_player); 402 | libvlc_time_t movieLength = libvlc_media_player_get_length(media_player); 403 | currTime += 60000; 404 | 405 | if (currTime > movieLength) 406 | currTime = movieLength - 1; 407 | 408 | libvlc_media_player_set_time(media_player, currTime); 409 | OnPositionChanged(); 410 | } 411 | 412 | void wxVLCFrame::OnMouseMove(wxMouseEvent& event) 413 | { 414 | if (IsFullScreen()) 415 | { 416 | Controls_Wnd->Show(); 417 | Timer1.StartOnce(); 418 | } 419 | } 420 | 421 | void wxVLCFrame::OnTimer1(wxTimerEvent& event) 422 | { 423 | if (IsFullScreen()) 424 | { 425 | wxPoint pt; 426 | wxWindow *window = wxFindWindowAtPointer(pt); 427 | 428 | if (Controls_Wnd->IsDescendant(window)) 429 | Timer1.StartOnce(); 430 | else 431 | { 432 | Controls_Wnd->Hide(); 433 | BoxSizer1->Layout(); 434 | } 435 | } 436 | } 437 | -------------------------------------------------------------------------------- /wxVLCMain.h: -------------------------------------------------------------------------------- 1 | /*************************************************************** 2 | * Name: wxVLCMain.h 3 | * Purpose: Defines Application Frame 4 | * Author: Tomay (tomay3000@gmail.com) 5 | * Created: 2018-05-23 6 | * Copyright: (c) Tomay 7 | * License: wxWindows licence 8 | **************************************************************/ 9 | 10 | #ifndef WXVLCMAIN_H 11 | #define WXVLCMAIN_H 12 | 13 | #include 14 | #include "imagepanel.h" 15 | #include 16 | 17 | //(*Headers(wxVLCFrame) 18 | //#include "wx/wxImagePanel.h" 19 | #include 20 | #include 21 | #include 22 | #include 23 | #include 24 | #include 25 | #include 26 | #include 27 | #include 28 | #include 29 | #include 30 | //*) 31 | 32 | class wxVLCFrame: public wxFrame 33 | { 34 | public: 35 | 36 | wxVLCFrame(wxWindow *parent, wxWindowID id = -1); 37 | virtual ~wxVLCFrame(); 38 | 39 | private: 40 | 41 | //(*Handlers(wxVLCFrame) 42 | void OnQuit(wxCommandEvent& event); 43 | void OnAbout(wxCommandEvent& event); 44 | void OnOpen(wxCommandEvent& event); 45 | void OnPlay_Pause(wxCommandEvent& event); 46 | void OnStop(wxCommandEvent& event); 47 | void OnVolumeChanged(wxScrollEvent& event); 48 | void OnTimelineChanged(wxScrollEvent& event); 49 | void OnToggleFullscreen(wxMouseEvent& event); 50 | void OnBackward(wxCommandEvent& event); 51 | void OnForward(wxCommandEvent& event); 52 | void OnMouseMove(wxMouseEvent& event); 53 | void OnTimer1(wxTimerEvent& event); 54 | //*) 55 | 56 | //(*Identifiers(wxVLCFrame) 57 | static const long ID_PNL_PLAYER; 58 | static const long ID_STATICLINE1; 59 | static const long ID_STTCTXT_CURRTIME; 60 | static const long ID_SLDR_TIMELINE; 61 | static const long ID_STTCTXT_MOVIELENGTH; 62 | static const long ID_BTN_PLAYPAUSE; 63 | static const long ID_BTN_STOP; 64 | static const long ID_BTN_BACKWARD; 65 | static const long ID_BTN_FORWARD; 66 | static const long ID_STATICTEXT1; 67 | static const long ID_SLDR_VOLUME; 68 | static const long ID_PNL_CONTROLS; 69 | static const long ID_MENUITEM1; 70 | static const long idMenuQuit; 71 | static const long idMenuAbout; 72 | static const long ID_STATUSBAR1; 73 | static const long ID_TIMER1; 74 | //*) 75 | 76 | //(*Declarations(wxVLCFrame) 77 | wxBoxSizer* BoxSizer1; 78 | wxBoxSizer* BoxSizer3; 79 | wxButton* Backward_Btn; 80 | wxButton* Forward_Btn; 81 | wxButton* Play_Pause_Btn; 82 | wxButton* Stop_Btn; 83 | wxFileDialog* OpenFile_Dlg; 84 | wxImagePanel* Player_Pnl; 85 | wxMenuItem* MenuItem3; 86 | wxPanel* Controls_Pnl; 87 | wxSlider* Timeline_Sldr; 88 | wxSlider* Volume_Sldr; 89 | wxStaticLine* StaticLine1; 90 | wxStaticText* CurrTime_SttcTxt; 91 | wxStaticText* MovieLength_SttcTxt; 92 | wxStaticText* StaticText1; 93 | wxStatusBar* StatusBar1; 94 | wxTimer Timer1; 95 | //*) 96 | 97 | private: 98 | wxPopupWindow *Controls_Wnd; 99 | wxBoxSizer *BoxSizer; 100 | 101 | private: 102 | void InitVLC(); 103 | 104 | public: 105 | void Play(); 106 | void Pause(); 107 | void Stop(); 108 | void OnPositionChanged(); 109 | void OnAudioVolumeChanged(); 110 | 111 | private: 112 | libvlc_media_player_t *media_player; 113 | libvlc_instance_t *vlc_inst; 114 | libvlc_event_manager_t *vlc_evt_man; 115 | 116 | DECLARE_EVENT_TABLE() 117 | }; 118 | 119 | void OnPositionChanged_VLC(const libvlc_event_t *event, void *data); 120 | void OnEndReached_VLC(const libvlc_event_t *event, void *data); 121 | void OnAudioVolumeChanged_VLC(const libvlc_event_t *event, void *data); 122 | 123 | #endif // WXVLCMAIN_H 124 | -------------------------------------------------------------------------------- /wx_pch.h: -------------------------------------------------------------------------------- 1 | /*************************************************************** 2 | * Name: wx_pch.h 3 | * Purpose: Header to create Pre-Compiled Header (PCH) 4 | * Author: Tomay (tomay3000@gmail.com) 5 | * Created: 2018-05-23 6 | * Copyright: 7 | (c) Tomay 8 | * License: wxWindows licence 9 | **************************************************************/ 10 | 11 | #ifndef WX_PCH_H_INCLUDED 12 | #define WX_PCH_H_INCLUDED 13 | 14 | // basic wxWidgets headers 15 | #include 16 | 17 | #ifdef __BORLANDC__ 18 | #pragma hdrstop 19 | #endif 20 | 21 | #ifndef WX_PRECOMP 22 | #include 23 | #endif 24 | 25 | #ifdef WX_PRECOMP 26 | // put here all your rarely-changing header files 27 | #endif // WX_PRECOMP 28 | 29 | #endif // WX_PCH_H_INCLUDED 30 | -------------------------------------------------------------------------------- /wxsmith/wxVLCframe.wxs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | wxVLC Media Player 5 | 1 6 | ./res/vlc.ico 7 | wxSYS_COLOUR_BTNFACE 8 | 0 9 | 10 | wxVERTICAL 11 | 12 | 13 | ./res/vlc.png 14 | #000000 15 | -1,300 16 | 17 | 18 | 19 | 20 | wxEXPAND 21 | 5 22 | 23 | 24 | 25 | 26 | 10,-1 27 | 28 | wxALL|wxEXPAND 29 | 5 30 | 31 | 32 | 33 | 34 | wxVERTICAL 35 | 36 | 37 | 38 | 39 | 40 | 41 | wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL 42 | 5 43 | 44 | 45 | 46 | 10000 47 | 0 48 | 49 | 50 | 51 | 52 | wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL 53 | 5 54 | 55 | 56 | 57 | 58 | 59 | 60 | wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL 61 | 5 62 | 63 | 64 | wxALL|wxEXPAND 65 | 5 66 | 67 | 68 | 69 | 70 | 71 | 72 | 0 73 | 74 | 75 | wxALL|wxEXPAND 76 | 5 77 | 78 | 79 | 80 | 81 | 0 82 | 83 | 84 | wxALL|wxEXPAND 85 | 5 86 | 87 | 88 | 89 | 90 | 0 91 | 92 | 93 | wxALL|wxEXPAND 94 | 5 95 | 96 | 97 | 98 | 99 | 0 100 | 101 | 102 | wxALL|wxEXPAND 103 | 5 104 | 105 | 106 | wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL 107 | 5 108 | 109 | 110 | 111 | 112 | 113 | 114 | wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL 115 | 5 116 | 117 | 118 | 119 | 100 120 | 50,-1d 121 | 122 | 123 | 124 | 125 | wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL 126 | 5 127 | 128 | 129 | wxALL|wxEXPAND 130 | 5 131 | 132 | 133 | 134 | wxEXPAND 135 | 5 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | Ctrl-O 144 | Open the video file 145 | 146 | 147 | 148 | 149 | 150 | Alt-F4 151 | Quit the application 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | F1 160 | Show info about this application 161 | 162 | 163 | 164 | 165 | 166 | 1 167 | -1 168 | wxSB_NORMAL 169 | 170 | 171 | Select an audio/video file 172 | All files (*.*)|*.* 173 | OpenFile__Dlg->Center(); 174 | 175 | 176 | 177 | 3000 178 | 1 179 | 180 | 181 | 182 | 183 | --------------------------------------------------------------------------------