~registry/dolphin-emu/triforce

« back to all changes in this revision

Viewing changes to Source/Core/DolphinWX/Src/WxUtils.h

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2013 Dolphin Emulator Project
 
2
// Licensed under GPLv2
 
3
// Refer to the license.txt file included.
 
4
 
 
5
#ifndef WXUTILS_H
 
6
#define WXUTILS_H
 
7
 
 
8
#include <string>
 
9
#include <wx/string.h>
 
10
 
 
11
namespace WxUtils
 
12
{
 
13
 
 
14
// Launch a file according to its mime type
 
15
void Launch(const char *filename);
 
16
 
 
17
// Launch an file explorer window on a certain path
 
18
void Explore(const char *path);
 
19
 
 
20
double GetCurrentBitmapLogicalScale();
 
21
 
 
22
}  // namespace
 
23
 
 
24
std::string WxStrToStr(const wxString& str);
 
25
wxString StrToWxStr(const std::string& str);
 
26
 
 
27
#endif // WXUTILS