86 lines
5.6 KiB
HTML
86 lines
5.6 KiB
HTML
<html><head><title>Branding/es</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type='text/css' href='wiki.css' rel='stylesheet'></head><body><h1>Branding/es</h1></div>
|
|
|
|
<div id="mw-content-text" lang="es" dir="ltr" class="mw-content-ltr"><hr/><div class="mw-parser-output"><p>Este artículo describe el <b>Marcado</b> de FreeCAD. Marcado significa comenzar tu propia aplicación basada en FreeCAD. Esto puede ser sólo tu propio ejecutable o <a href="https://www.freecadweb.org/wiki/index.php?title=Splash_screen/es" title="Splash screen/es">pantalla de bienvenida</a> pantalla de bienvenida hasta un programa completo adaptado. En base a la arquitectura flexible de FreeCAD es sencillo de utilizar como base para tus propios programas de propósito especial.
|
|
</p>
|
|
<h3><span class="mw-headline" id="General">General</span></h3>
|
|
<p>La mayoría del marcado se realiza en <b>MainCmd.cpp<i> o </i>MainGui.cpp</b>. Estos proyectos generan los archivos ejecutables de FreeCAD. Para crear tu propia Marca simplemente copia los proyectos Main o MainGui y dale al ejecutable un nombre diferente, e.g. FooApp.exe.
|
|
La configuración más importante para una nueva apariencia puede realizarse en una lugar de la función main(). Aquí está la sección de código que controla el marcado:
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre> int main( int argc, char ** argv )
|
|
{
|
|
// Name and Version of the Application
|
|
App::Application::Config()["ExeName"] = "FooApp";
|
|
App::Application::Config()["ExeVersion"] = "0.7";
|
|
|
|
// set the banner (for loging and console)
|
|
App::Application::Config()["CopyrightInfo"] = sBanner;
|
|
App::Application::Config()["AppIcon"] = "FooAppIcon";
|
|
App::Application::Config()["SplashScreen"] = "FooAppSplasher";
|
|
App::Application::Config()["StartWorkbench"] = "Part design";
|
|
App::Application::Config()["HiddenDockWindow"] = "Property editor";
|
|
App::Application::Config()["SplashAlignment" ] = "Bottom|Left";
|
|
App::Application::Config()["SplashTextColor" ] = "#000000"; // black
|
|
|
|
// Inits the Application
|
|
App::Application::Config()["RunMode"] = "Gui";
|
|
App::Application::init(argc,argv);
|
|
|
|
Gui::BitmapFactory().addXPM("FooAppSplasher", ( const char** ) splash_screen);
|
|
|
|
Gui::Application::initApplication();
|
|
Gui::Application::runApplication();
|
|
App::Application::destruct();
|
|
|
|
return 0;
|
|
}</pre></div>
|
|
<p>La primera entrada de Config define el nombre del programa. Este no es el nombre del ejecutable, el cual puede cambiarse renombrándolo o por la configuración del compilador, sino el nombre que es mostrado en la barra de tareas en Windows o en la lista de programas en los sistemas Unix.
|
|
</p><p>Las siguientes líneas definen las entradas de Config de tu aplicación FooApp. Una descripción de Config y sus entradas se encuentra en <a href="https://www.freecadweb.org/wiki/index.php?title=Start_up_and_Configuration/es" title="Start up and Configuration/es">Inicio y Configuración</a>.
|
|
</p>
|
|
<h3><span class="mw-headline" id="Images">Images</span></h3>
|
|
<p>Image resources are compiled into FreeCAD using <a rel="nofollow" class="external text" href="http://qt-project.org/doc/qt-4.8/resources.html">Qt's resource system</a>. Therefore you have to write a .qrc file, an XML-based file format that lists image files on the disk but also any other kind of resource files. To load the compiled resources inside the application you have to add a line
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre> Q_INIT_RESOURCE(FooApp);</pre></div>
|
|
<p>into the main() function. Alternatively, if you have an image in XPM format you can directly include it into your main.cpp and add the following line to register it:
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre> Gui::BitmapFactory().addXPM("FooAppSplasher", ( const char** ) splash_screen);</pre></div>
|
|
<h3><span class="mw-headline" id="Branding_XML">Branding XML</span></h3>
|
|
<p>In FreeCAD there is also a method supported without writing a customized main() function. For this method you must write a file name called branding.xml and put it into the installation directory of FreeCAD. Here is an example with all supported tags:
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre> <?xml version="1.0" encoding="utf-8"?>
|
|
<Branding>
|
|
<Application>FooApp</Application>
|
|
<WindowTitle>Foo App in title bar</WindowTitle>
|
|
<BuildVersionMajor>1</BuildVersionMajor>
|
|
<BuildVersionMinor>0</BuildVersionMinor>
|
|
<BuildRevision>1234</BuildRevision>
|
|
<BuildRevisionDate>2014/1/1</BuildRevisionDate>
|
|
<CopyrightInfo>(c) My copyright</CopyrightInfo>
|
|
<MaintainerUrl>Foo App URL</MaintainerUrl>
|
|
<ProgramLogo>Path to logo (appears in bottom right corner)</ProgramLogo>
|
|
<WindowIcon>Path to icon file</WindowIcon>
|
|
<ProgramIcons>Path to program icons</ProgramIcons>
|
|
<SplashScreen>splashscreen.png</SplashScreen>
|
|
<SplashAlignment>Bottom|Left</SplashAlignment>
|
|
<SplashTextColor>#ffffff</SplashTextColor>
|
|
<SplashInfoColor>#c8c8c8</SplashInfoColor>
|
|
<StartWorkbench>PartDesignWorkbench</StartWorkbench>
|
|
</Branding></pre></div>
|
|
<p>All of the listed tags are optional.
|
|
</p>
|
|
|
|
<div style="clear:both"></div>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div><div class="printfooter">
|
|
Online version: "<a dir="ltr" href="https://www.freecadweb.org/wiki/index.php?title=Branding/es&oldid=114368">http://www.freecadweb.org/wiki/index.php?title=Branding/es&oldid=114368</a>"</div>
|
|
<div id="catlinks" class="catlinks" data-mw="interface"></div><div class="visualClear"></div>
|
|
</div>
|
|
</div>
|
|
<div id="mw-navigation">
|
|
<h2>Navigation menu</h2>
|
|
|
|
</body></html> |