/LuaEdit/utility.h
http://modstudio2.googlecode.com/ · C Header · 58 lines · 24 code · 6 blank · 28 comment · 0 complexity · f5355f38a53e321a413fd52df06667c1 MD5 · raw file
- /*
- Copyright (c) 2008 Peter "Corsix" Cawley
-
- Permission is hereby granted, free of charge, to any person
- obtaining a copy of this software and associated documentation
- files (the "Software"), to deal in the Software without
- restriction, including without limitation the rights to use,
- copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the
- Software is furnished to do so, subject to the following
- conditions:
-
- The above copyright notice and this permission notice shall be
- included in all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- OTHER DEALINGS IN THE SOFTWARE.
- */
- #pragma once
- // For compilers that support precompilation, includes "wx/wx.h".
- #include "wx/wxprec.h"
-
- #ifdef __BORLANDC__
- #pragma hdrstop
- #endif
-
- // for all others, include the necessary headers (this file is usually all you
- // need because it includes almost all "standard" wxWidgets headers)
- #ifndef WX_PRECOMP
- #include "wx/wx.h"
- #endif
- // ----------------------------
- #include <rainman2.h>
- #include <wx/filedlg.h>
- extern "C" {
- #include <lua.h>
- }
-
- void luaX_pushrstring(lua_State *L, const RainString& s);
- void luaX_pushwstring(lua_State *L, const wchar_t* s);
- RainString GetParentFolder(RainString sPath, int iNumLevelsUp = 1);
-
- class PipelineFileOpenDialog : public wxFileDialog
- {
- public:
- PipelineFileOpenDialog(wxWindow *pParent, wxComboBox *pFileList);
-
- bool show();
-
- protected:
- wxComboBox *m_pFileList;
- };