Loading AI tools
De Wikipédia, l'encyclopédie libre
FOX toolkit est une bibliothèque logicielle permettant la réalisation d'interface graphiques, FOX signifiant Free Objects for X. Il s'agit d'un outil libre sous licence LGPL[1] et multiplate-forme. Il est en effet disponible sous Windows et pour le système de fenêtrage X (employé par un grand nombre de systèmes de type Unix ou dérivés).
Écrit en | C++ |
---|---|
Type | Widget toolkit |
Licence | Licence publique générale limitée GNU |
Site web | fox-toolkit.org |
Son développement a débuté en 1997[2] et est toujours poursuivi par son instigateur, Jeroen van der Zijp, et la communauté s'étant formée autour de la bibliothèque.
Ce toolkit est écrit en C++ et possède des bindings vers les langages Python, Ruby et Eiffel.
L'exemple suivant, en C++, crée une application FOX et une boîte de dialogue avec un bouton "Hello World" :
#include "fx.h"
int main(int argc, char *argv[]) {
FXApp application("Hello", "FoxTest");
application.init(argc, argv);
FXMainWindow *main=new FXMainWindow(&application, "Hello", NULL, NULL, DECOR_ALL);
new FXButton(main, "&Hello, World!", NULL, &application, FXApp::ID_QUIT);
application.create();
main->show(PLACEMENT_SCREEN);
return application.run();
}
Seamless Wikipedia browsing. On steroids.
Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.
Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.