FreeCAD-Doc/localwiki/Branding-sv.html
2018-07-19 18:47:02 -05:00

86 lines
5.4 KiB
HTML

<html><head><title>Branding/sv</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/sv</h1></div>
<div id="mw-content-text" lang="sv" dir="ltr" class="mw-content-ltr"><hr/><div class="mw-parser-output"><p>Denna artikel diskuterar <b>Branding</b> av FreeCAD. Branding innebär att du gör din egen applikation med FreeCAD som bas. Det kan sträcka sig från att bara ha en egen startfil eller uppstartsbild till ett helt och hållet omarbetat program. På basis FreeCAD's flexibla arkitektur så är det lätt att använda den som bas för dina egna program för speciella ändmål.
</p>
<h3><span class="mw-headline" id="Allm.C3.A4nt">Allmänt</span></h3>
<p>Den mesta brandingen görs i <b>MainCmd.cpp<i> or </i>MainGui.cpp</b>. Dessa Projekt genererar FreeCAD's körbara filer. För att göra din egen variant så behöver du bara kopiera Main eller MainGui projekten och ge den körbara filen ett eget namn, d.v.s. FooApp.exe.
</p><p>De viktigaste inställningarna för ett nytt utseende kan göras på en plats i main() funktionen. Här är den kodsektion som kontrollerar branding:
</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>Den första Config punkten definierar programmets namn. Detta är inte det körbara namnet, vilket kan ändras genom att döpa om eller genom inställningar i kompilatorn, utan det namn som visas i windows programrad eller i programlistan på Unixsystem.
</p><p>Efterföljande rader definierar Config punkterna för din FooApp Applikation. En beskrivning av Config och dess punkter hittar du i <a href="https://www.freecadweb.org/wiki/index.php?title=Start_up_and_Configuration/sv" title="Start up and Configuration/sv">Uppstart och Konfiguration</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> &lt;?xml version="1.0" encoding="utf-8"?>
&lt;Branding>
&lt;Application>FooApp&lt;/Application>
&lt;WindowTitle>Foo App in title bar&lt;/WindowTitle>
&lt;BuildVersionMajor>1&lt;/BuildVersionMajor>
&lt;BuildVersionMinor>0&lt;/BuildVersionMinor>
&lt;BuildRevision>1234&lt;/BuildRevision>
&lt;BuildRevisionDate>2014/1/1&lt;/BuildRevisionDate>
&lt;CopyrightInfo>(c) My copyright&lt;/CopyrightInfo>
&lt;MaintainerUrl>Foo App URL&lt;/MaintainerUrl>
&lt;ProgramLogo>Path to logo (appears in bottom right corner)&lt;/ProgramLogo>
&lt;WindowIcon>Path to icon file&lt;/WindowIcon>
&lt;ProgramIcons>Path to program icons&lt;/ProgramIcons>
&lt;SplashScreen>splashscreen.png&lt;/SplashScreen>
&lt;SplashAlignment>Bottom|Left&lt;/SplashAlignment>
&lt;SplashTextColor>#ffffff&lt;/SplashTextColor>
&lt;SplashInfoColor>#c8c8c8&lt;/SplashInfoColor>
&lt;StartWorkbench>PartDesignWorkbench&lt;/StartWorkbench>
&lt;/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/sv&amp;oldid=114407">http://www.freecadweb.org/wiki/index.php?title=Branding/sv&amp;oldid=114407</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>