Coder Social home page Coder Social logo

waxe's Introduction

waxe

Haxe + wxWidgets

Rebuilding

git clone --recurse https://github.com/nmehost/waxe.git
cd waxe
haxelib dev waxe .
cd project
haxelib run hxcpp Build.xml -DHXCPP_M64

If you want to do 32-bit neko:

haxelib run hxcpp Build.xml

Testing

cd samples/00-Minimal
haxe compile-cpp.hxml
./bin/cpp/Main.exe

neko testing:

cd samples/01-Simple
haxe compile-neko.hxml
neko Sample.n

waxe's People

Contributors

hughsando avatar cambiata avatar therealglazou avatar jens-g avatar neni avatar

Stargazers

 avatar flumpus avatar  avatar 伏毅 avatar Aden LeQuire avatar hlizard avatar sinh-png avatar Osama Al Banna avatar tinaxd avatar David Konsumer avatar  avatar  avatar  avatar  avatar  avatar Indrek Vändrik avatar Alexander avatar Stephen Corya avatar Datee avatar  avatar Dario Cangialosi avatar Adi avatar Moruy avatar Adam Parrott avatar lleqsnoom avatar Renato Silva avatar Jean-Sebastien Belanger Ricard avatar Kevin Remisoski avatar Maxime Mangel avatar Barak Shohat avatar Matthew avatar Tomobodo avatar Joohun, Maeng avatar TheCocce avatar Guntur Sarwohadi avatar Alexander Koz. avatar sharow avatar  avatar Dario Elyasy avatar Ramon Barros avatar Nathaniel Paulus avatar Gonzalo Springhart avatar Jefferson González avatar CJ avatar Laurence Dougal Myers avatar  avatar Jonas Malaco avatar Nick Holder avatar Franco Ponticelli avatar Dima Granetchi avatar

Watchers

 avatar Matthew Ishimaru avatar Dražen Šoronda avatar James Cloos avatar  avatar 煎饼果子 avatar  avatar

waxe's Issues

No way to create a sub-menu?

I don't know if I am missing anything, but is there a way to create a sub-menu or am I stuck with only single-level menus?

I cannot see a function in MenuBar or Menu that would allow me to append another menu (as a menu item) onto another menu. If there is, let me know, otherwise I would like an update (if it was not waiting for two years otherwise).

Can not show Chinese word, Please Fix it, Thanks!

I found a way to show Chinese words, fix function wxString Val2Str(value inVal) like this:
use FromUTF8 to replace FromAscii

wxString Val2Str(value inVal)
{
if (val_is_string(inVal))
return wxString::FromUTF8( val_string(inVal) );
if (val_is_object(inVal))
{
value __s = val_field(inVal,val_id("__s"));
if (val_is_string(__s))
return wxString::FromUTF8( val_string(__s) );
}
else if (val_is_object(inVal))
return val_bool(inVal) ? wxString(wxT("true")) : wxString(wxT("false"));
//wxMessageBox(wxT("Bad string translation"));
return wxT("");
}

Using image other than bmp

Hey

i'd like to know if you will add support for loading images other than bmp with the Bitmap.hx class, or if there is a way to do so?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.