├── .gitignore ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── projexui ├── __init__.py ├── completers │ ├── __init__.py │ ├── xjoincompleter.py │ ├── xorbcolumncompleter.py │ ├── xorbsearchcompleter.py │ └── xquerycompleter.py ├── configs │ ├── __init__.py │ ├── xschemeconfig.py │ └── xshortcutconfig │ │ ├── __init__.py │ │ ├── ui │ │ └── xshortcutwidget.ui │ │ ├── xshortcutconfig.py │ │ └── xshortcutwidget.py ├── designer │ ├── __init__.py │ └── build │ │ ├── __init__.py │ │ ├── xactiongroupwidgetplugin.py │ │ ├── xboolcomboboxplugin.py │ │ ├── xcalendarwidgetplugin.py │ │ ├── xchartplugin.py │ │ ├── xcollapsibleloggerwidgetplugin.py │ │ ├── xcolorbuttonplugin.py │ │ ├── xcolortreewidgetplugin.py │ │ ├── xcomboboxplugin.py │ │ ├── xcommenteditplugin.py │ │ ├── xconsoleeditplugin.py │ │ ├── xconsolestatusbarplugin.py │ │ ├── xcurrencyspinboxplugin.py │ │ ├── xdateeditplugin.py │ │ ├── xdatetimeeditplugin.py │ │ ├── xdevtoolswidgetplugin.py │ │ ├── xenumboxplugin.py │ │ ├── xfilepatheditplugin.py │ │ ├── xfindwidgetplugin.py │ │ ├── xganttwidgetplugin.py │ │ ├── xgroupboxplugin.py │ │ ├── xiconbuttonplugin.py │ │ ├── ximagesliderplugin.py │ │ ├── xkeyvaluetreewidgetplugin.py │ │ ├── xlabelplugin.py │ │ ├── xlineeditplugin.py │ │ ├── xlistwidgetplugin.py │ │ ├── xlocaleboxplugin.py │ │ ├── xlocationwidgetplugin.py │ │ ├── xlockbuttonplugin.py │ │ ├── xloggertreewidgetplugin.py │ │ ├── xloggerwidgetplugin.py │ │ ├── xmdiareaplugin.py │ │ ├── xmultitageditplugin.py │ │ ├── xnavigationeditplugin.py │ │ ├── xnodewidgetplugin.py │ │ ├── xorbbrowserwidgetplugin.py │ │ ├── xorbcolumneditplugin.py │ │ ├── xorbcolumnnavigatorboxplugin.py │ │ ├── xorbcolumnnavigatorplugin.py │ │ ├── xorbgrideditplugin.py │ │ ├── xorbpopupbuttonplugin.py │ │ ├── xorbquerywidgetplugin.py │ │ ├── xorbquickfilterwidgetplugin.py │ │ ├── xorbrecordboxplugin.py │ │ ├── xorbrecordeditplugin.py │ │ ├── xorbrecordseteditplugin.py │ │ ├── xorbschemaboxplugin.py │ │ ├── xorbtreewidgetplugin.py │ │ ├── xpageswidgetplugin.py │ │ ├── xpopupbuttonplugin.py │ │ ├── xprogressfeedbackwidgetplugin.py │ │ ├── xpushbuttonplugin.py │ │ ├── xquerybuilderwidgetplugin.py │ │ ├── xratingsliderplugin.py │ │ ├── xrichtexteditplugin.py │ │ ├── xrolloutwidgetplugin.py │ │ ├── xscintillaeditplugin.py │ │ ├── xsearcheditplugin.py │ │ ├── xserialeditplugin.py │ │ ├── xsplitbuttonplugin.py │ │ ├── xsplitterplugin.py │ │ ├── xstackedwidgetplugin.py │ │ ├── xswitchbuttonplugin.py │ │ ├── xtablewidgetplugin.py │ │ ├── xtabwidgetplugin.py │ │ ├── xtexteditplugin.py │ │ ├── xtimedeltaeditplugin.py │ │ ├── xtimeeditplugin.py │ │ ├── xtimerlabelplugin.py │ │ ├── xtoolbarplugin.py │ │ ├── xtoolbuttonplugin.py │ │ ├── xtreewidgetplugin.py │ │ ├── xurlwidgetplugin.py │ │ ├── xviewplugin.py │ │ ├── xviewprofilemanagerplugin.py │ │ ├── xviewprofiletoolbarplugin.py │ │ ├── xviewwidgetplugin.py │ │ └── xzoomsliderplugin.py ├── dialogs │ ├── __init__.py │ ├── xaboutdialog │ │ ├── __init__.py │ │ ├── ui │ │ │ └── xaboutdialog.ui │ │ └── xaboutdialog.py │ ├── xconfigdialog │ │ ├── __init__.py │ │ ├── ui │ │ │ └── xconfigdialog.ui │ │ ├── xconfigdialog.py │ │ ├── xconfigplugin.py │ │ └── xconfigwidget.py │ ├── xinputdialog.py │ ├── xkeyvaluedialog.py │ ├── xmessagebox.py │ ├── xshortcutdialog │ │ ├── __init__.py │ │ ├── ui │ │ │ └── xshortcutdialog.ui │ │ └── xshortcutdialog.py │ └── xwizardbrowserdialog │ │ ├── __init__.py │ │ ├── ui │ │ └── xwizardbrowserdialog.ui │ │ ├── xwizardbrowserdialog.py │ │ └── xwizardplugin.py ├── exporters │ ├── __init__.py │ ├── __plugins__.py │ └── xexcelexporter.py ├── helpers │ ├── __init__.py │ └── xanimatediconhelper.py ├── highlighters │ ├── __init__.py │ ├── __plugins__.py │ ├── xcodehighlighter.py │ └── xpythonhighlighter.py ├── menus │ ├── __init__.py │ ├── xmenu.py │ └── xrecentfilesmenu.py ├── pyi_hook.py ├── qt.py ├── resources │ ├── __init__.py │ └── rc │ │ ├── __init__.py │ │ ├── __plugins__.py │ │ ├── pyside_projexui_default_rc.py │ │ └── pyside_projexui_styles_rc.py ├── scripts │ ├── xdesigner_gen.py │ ├── xdk.py │ ├── xinterpreter.py │ └── xui_gen.py ├── views │ ├── __init__.py │ ├── xconsoleview.py │ ├── xlogrecordview.py │ └── xscriptview.py ├── widgets │ ├── __init__.py │ ├── xactiongroupwidget.py │ ├── xboolcombobox.py │ ├── xcalendarwidget │ │ ├── __init__.py │ │ ├── xcalendaritem.py │ │ ├── xcalendarscene.py │ │ └── xcalendarwidget.py │ ├── xchart │ │ ├── __init__.py │ │ ├── axes │ │ │ ├── __init__.py │ │ │ ├── xdatasetaxis.py │ │ │ ├── xdatetimeaxis.py │ │ │ └── xnumberaxis.py │ │ ├── renderers │ │ │ ├── __init__.py │ │ │ ├── xbarrenderer.py │ │ │ ├── xdonutrenderer.py │ │ │ ├── xlinerenderer.py │ │ │ └── xpierenderer.py │ │ ├── ui │ │ │ └── xchart.ui │ │ ├── xchart.py │ │ ├── xchartaxis.py │ │ ├── xchartdataset.py │ │ ├── xchartdatasetitem.py │ │ ├── xchartrenderer.py │ │ └── xchartscene.py │ ├── xchartwidget │ │ ├── __init__.py │ │ ├── xchartruler.py │ │ ├── xchartscene.py │ │ ├── xcharttrackeritem.py │ │ ├── xchartwidget.py │ │ └── xchartwidgetitem.py │ ├── xcodeedit │ │ ├── __init__.py │ │ ├── xcodeedit.py │ │ └── xnumberarea.py │ ├── xcollapsibleloggerwidget │ │ ├── __init__.py │ │ ├── ui │ │ │ └── xcollapsibleloggerwidget.ui │ │ └── xcollapsibleloggerwidget.py │ ├── xcolorbutton.py │ ├── xcolortreewidget.py │ ├── xcombobox.py │ ├── xcommentedit.py │ ├── xconsoleedit.py │ ├── xconsolestatusbar.py │ ├── xcurrencyspinbox.py │ ├── xdateedit.py │ ├── xdatetimeedit.py │ ├── xdevtoolswidget.py │ ├── xdocktoolbar.py │ ├── xdropzonewidget.py │ ├── xenumbox.py │ ├── xfilepathedit.py │ ├── xfindwidget.py │ ├── xganttwidget │ │ ├── __init__.py │ │ ├── ui │ │ │ └── xganttwidget.ui │ │ ├── xganttdepitem.py │ │ ├── xganttscene.py │ │ ├── xganttviewitem.py │ │ ├── xganttwidget.py │ │ └── xganttwidgetitem.py │ ├── xgroupbox.py │ ├── xiconbutton.py │ ├── ximageslider │ │ ├── __init__.py │ │ ├── ximageitem.py │ │ ├── ximagescene.py │ │ └── ximageslider.py │ ├── xkeyvaluetreewidget.py │ ├── xlabel.py │ ├── xlineedit.py │ ├── xlistwidget.py │ ├── xloaderwidget.py │ ├── xlocalebox.py │ ├── xlocationwidget.py │ ├── xlockbutton.py │ ├── xloggersplashscreen.py │ ├── xloggerwidget │ │ ├── __init__.py │ │ ├── ui │ │ │ └── xloggercontrols.ui │ │ ├── xloggercolorset.py │ │ ├── xloggercontrols.py │ │ ├── xloggertreewidget.py │ │ ├── xloggerwidget.py │ │ └── xloggerwidgethandler.py │ ├── xlogrecordwidget │ │ ├── __init__.py │ │ ├── ui │ │ │ ├── xlogrecordcontrols.ui │ │ │ └── xlogrecordwidget.ui │ │ ├── xlogrecordcontrols.py │ │ ├── xlogrecordhandler.py │ │ └── xlogrecordwidget.py │ ├── xmdiarea.py │ ├── xmenutemplatewidget │ │ ├── __init__.py │ │ ├── ui │ │ │ └── xmenutemplatewidget.ui │ │ └── xmenutemplatewidget.py │ ├── xmultitagedit.py │ ├── xnavigationedit.py │ ├── xnodewidget │ │ ├── __init__.py │ │ ├── xnode.py │ │ ├── xnodeconnection.py │ │ ├── xnodehotspot.py │ │ ├── xnodelayer.py │ │ ├── xnodelayout.py │ │ ├── xnodepalette.py │ │ ├── xnodescene.py │ │ └── xnodewidget.py │ ├── xorbbrowserwidget │ │ ├── __init__.py │ │ ├── ui │ │ │ ├── xorbbrowserwidget.ui │ │ │ └── xorbquerywidget.ui │ │ ├── xcardwidget.py │ │ ├── xorbbrowserfactory.py │ │ ├── xorbbrowserwidget.py │ │ └── xorbquerywidget.py │ ├── xorbcolumnedit │ │ ├── __init__.py │ │ ├── plugins │ │ │ ├── __init__.py │ │ │ ├── date.py │ │ │ ├── generic.py │ │ │ ├── reference.py │ │ │ └── string.py │ │ └── xorbcolumnedit.py │ ├── xorbcolumnnavigator.py │ ├── xorbgridedit │ │ ├── __init__.py │ │ ├── ui │ │ │ └── xorbgridedit.ui │ │ └── xorbgridedit.py │ ├── xorbgroupingwidget │ │ ├── __init__.py │ │ ├── ui │ │ │ └── xorbgroupingwidget.ui │ │ └── xorbgroupingwidget.py │ ├── xorbpopupbutton.py │ ├── xorbquerywidget │ │ ├── __init__.py │ │ ├── plugins.py │ │ ├── ui │ │ │ ├── xorbquerycontainer.ui │ │ │ └── xorbqueryentrywidget.ui │ │ ├── xorbquerycontainer.py │ │ ├── xorbqueryentrywidget.py │ │ ├── xorbqueryplugin.py │ │ ├── xorbquerywidget.py │ │ └── xorbquickfilterwidget.py │ ├── xorbrecordbox.py │ ├── xorbrecordedit.py │ ├── xorbrecordsetedit │ │ ├── __init__.py │ │ ├── ui │ │ │ └── xorbrecordsetedit.ui │ │ └── xorbrecordsetedit.py │ ├── xorbrecordwidget.py │ ├── xorbschemabox.py │ ├── xorbtreewidget │ │ ├── __init__.py │ │ ├── xorbgroupitem.py │ │ ├── xorbrecorditem.py │ │ └── xorbtreewidget.py │ ├── xoverlaywidget.py │ ├── xoverlaywizard.py │ ├── xpageswidget.py │ ├── xpopupbutton.py │ ├── xpopupwidget.py │ ├── xprogressfeedbackwidget │ │ ├── __init__.py │ │ ├── ui │ │ │ └── xprogressfeedbackwidget.ui │ │ └── xprogressfeedbackwidget.py │ ├── xpushbutton.py │ ├── xquerybuilderwidget │ │ ├── __init__.py │ │ ├── ui │ │ │ ├── xquerybuilderwidget.ui │ │ │ └── xquerylinewidget.ui │ │ ├── xquerybuilderwidget.py │ │ ├── xquerylinewidget.py │ │ └── xqueryrule.py │ ├── xratingslider.py │ ├── xrichtextedit │ │ ├── __init__.py │ │ ├── ui │ │ │ ├── xfontpickerwidget.ui │ │ │ └── xrichtextedit.ui │ │ ├── xfontpickerwidget.py │ │ └── xrichtextedit.py │ ├── xrolloutwidget.py │ ├── xscintillaedit │ │ ├── __init__.py │ │ ├── lang │ │ │ ├── bash.ini │ │ │ ├── batch.ini │ │ │ ├── cpp.ini │ │ │ ├── css.ini │ │ │ ├── html.ini │ │ │ ├── java.ini │ │ │ ├── javascript.ini │ │ │ ├── lua.ini │ │ │ ├── mako.ini │ │ │ ├── maxscript.ini │ │ │ ├── mu.ini │ │ │ ├── perl.ini │ │ │ ├── puppet.ini │ │ │ ├── python.ini │ │ │ ├── ruby.ini │ │ │ ├── scss.ini │ │ │ ├── xml.ini │ │ │ └── yaml.ini │ │ ├── xlanguage.py │ │ ├── xscintillaedit.py │ │ ├── xscintillaeditcolorset.py │ │ └── xscintillaeditoptions.py │ ├── xsearchedit.py │ ├── xserialedit.py │ ├── xsnapshotwidget.py │ ├── xsplitbutton.py │ ├── xsplitter.py │ ├── xstackedwidget.py │ ├── xstyleable.py │ ├── xswitchbutton.py │ ├── xtablewidget.py │ ├── xtabwidget.py │ ├── xtextedit.py │ ├── xtimedeltaedit.py │ ├── xtimeedit.py │ ├── xtimerlabel.py │ ├── xtoolbar.py │ ├── xtoolbutton.py │ ├── xtreewidget │ │ ├── __init__.py │ │ ├── xloaderitem.py │ │ ├── xtreewidget.py │ │ ├── xtreewidgetdelegate.py │ │ └── xtreewidgetitem.py │ ├── xurlwidget.py │ ├── xviewwidget │ │ ├── __init__.py │ │ ├── ui │ │ │ └── xviewprofiledialog.ui │ │ ├── xview.py │ │ ├── xviewdialog.py │ │ ├── xviewpanel.py │ │ ├── xviewpanelmenu.py │ │ ├── xviewprofile.py │ │ ├── xviewprofiledialog.py │ │ ├── xviewprofilemanager.py │ │ ├── xviewprofilemanagermenu.py │ │ ├── xviewprofiletoolbar.py │ │ └── xviewwidget.py │ ├── xwalkthroughwidget │ │ ├── __init__.py │ │ ├── xwalkthrough.py │ │ ├── xwalkthroughgraphics.py │ │ ├── xwalkthroughscene.py │ │ └── xwalkthroughwidget.py │ └── xzoomslider.py ├── windows │ ├── __init__.py │ └── xdkwindow │ │ ├── __init__.py │ │ ├── ui │ │ └── xdkwindow.ui │ │ ├── xdkitem.py │ │ └── xdkwindow.py ├── wizards │ ├── __init__.py │ └── xscaffoldwizard │ │ ├── __init__.py │ │ ├── ui │ │ └── xscaffoldstructurepage.ui │ │ └── xscaffoldwizard.py ├── xanimation.py ├── xapplication.py ├── xcoloricon.py ├── xcolorset.py ├── xcommands.py ├── xdatatype.py ├── xexporter.py ├── xfont.py ├── xhistorystack.py ├── xlogginghandler.py ├── xorblookupworker.py ├── xorbworker.py ├── xpainter.py ├── xpalette.py ├── xresourcemanager.py ├── xscheme.py ├── xsettings.py ├── xthread.py ├── xtimer.py └── xwidgetvalue.py ├── resources ├── apps.qrc ├── apps │ └── xdk.ico ├── default.qrc ├── default │ └── img │ │ ├── add.png │ │ ├── add_tab.png │ │ ├── advanced.png │ │ ├── ajax_loader.gif │ │ ├── arrow.png │ │ ├── attach.png │ │ ├── back.png │ │ ├── chart │ │ ├── bar.png │ │ ├── donut.png │ │ ├── line.png │ │ └── pie.png │ │ ├── check_off.png │ │ ├── check_on.png │ │ ├── check_part.png │ │ ├── clock.png │ │ ├── close.png │ │ ├── columns.png │ │ ├── config.png │ │ ├── copy.png │ │ ├── debug │ │ ├── break.png │ │ ├── continue.png │ │ ├── current.png │ │ ├── next_function.png │ │ ├── next_line.png │ │ └── step.png │ │ ├── dialog.png │ │ ├── down.png │ │ ├── edit.png │ │ ├── export.png │ │ ├── file.png │ │ ├── file_32.png │ │ ├── find.png │ │ ├── flags │ │ ├── _United Nations.png │ │ ├── ad.png │ │ ├── ae.png │ │ ├── af.png │ │ ├── ag.png │ │ ├── ai.png │ │ ├── al.png │ │ ├── am.png │ │ ├── an.png │ │ ├── ao.png │ │ ├── aq.png │ │ ├── ar.png │ │ ├── as.png │ │ ├── at.png │ │ ├── au.png │ │ ├── aw.png │ │ ├── az.png │ │ ├── ba.png │ │ ├── bb.png │ │ ├── bd.png │ │ ├── be.png │ │ ├── bf.png │ │ ├── bg.png │ │ ├── bh.png │ │ ├── bi.png │ │ ├── bj.png │ │ ├── bm.png │ │ ├── bn.png │ │ ├── bo.png │ │ ├── br.png │ │ ├── bs.png │ │ ├── bt.png │ │ ├── bw.png │ │ ├── by.png │ │ ├── bz.png │ │ ├── ca.png │ │ ├── cd.png │ │ ├── cf.png │ │ ├── cg.png │ │ ├── ch.png │ │ ├── ci.png │ │ ├── ck.png │ │ ├── cl.png │ │ ├── cm.png │ │ ├── cn.png │ │ ├── co.png │ │ ├── cr.png │ │ ├── cu.png │ │ ├── cv.png │ │ ├── cy.png │ │ ├── cz.png │ │ ├── de.png │ │ ├── dj.png │ │ ├── dk.png │ │ ├── dm.png │ │ ├── do.png │ │ ├── dz.png │ │ ├── ec.png │ │ ├── ee.png │ │ ├── eg.png │ │ ├── eh.png │ │ ├── er.png │ │ ├── es.png │ │ ├── et.png │ │ ├── fi.png │ │ ├── fj.png │ │ ├── fm.png │ │ ├── fo.png │ │ ├── fr.png │ │ ├── ga.png │ │ ├── gb.png │ │ ├── gd.png │ │ ├── ge.png │ │ ├── gg.png │ │ ├── gh.png │ │ ├── gi.png │ │ ├── gl.png │ │ ├── gm.png │ │ ├── gn.png │ │ ├── gp.png │ │ ├── gq.png │ │ ├── gr.png │ │ ├── gt.png │ │ ├── gu.png │ │ ├── gw.png │ │ ├── gy.png │ │ ├── hk.png │ │ ├── hn.png │ │ ├── hr.png │ │ ├── ht.png │ │ ├── hu.png │ │ ├── id.png │ │ ├── ie.png │ │ ├── il.png │ │ ├── im.png │ │ ├── in.png │ │ ├── iq.png │ │ ├── ir.png │ │ ├── is.png │ │ ├── it.png │ │ ├── je.png │ │ ├── jm.png │ │ ├── jo.png │ │ ├── jp.png │ │ ├── ke.png │ │ ├── kg.png │ │ ├── kh.png │ │ ├── ki.png │ │ ├── km.png │ │ ├── kn.png │ │ ├── kp.png │ │ ├── kr.png │ │ ├── kw.png │ │ ├── ky.png │ │ ├── kz.png │ │ ├── la.png │ │ ├── lb.png │ │ ├── lc.png │ │ ├── li.png │ │ ├── lk.png │ │ ├── lr.png │ │ ├── ls.png │ │ ├── lt.png │ │ ├── lu.png │ │ ├── lv.png │ │ ├── ly.png │ │ ├── ma.png │ │ ├── mc.png │ │ ├── md.png │ │ ├── me.png │ │ ├── mg.png │ │ ├── mh.png │ │ ├── mk.png │ │ ├── ml.png │ │ ├── mm.png │ │ ├── mn.png │ │ ├── mo.png │ │ ├── mq.png │ │ ├── mr.png │ │ ├── ms.png │ │ ├── mt.png │ │ ├── mu.png │ │ ├── mv.png │ │ ├── mw.png │ │ ├── mx.png │ │ ├── my.png │ │ ├── mz.png │ │ ├── na.png │ │ ├── nc.png │ │ ├── ne.png │ │ ├── ng.png │ │ ├── ni.png │ │ ├── nl.png │ │ ├── no.png │ │ ├── np.png │ │ ├── nr.png │ │ ├── nz.png │ │ ├── om.png │ │ ├── pa.png │ │ ├── pe.png │ │ ├── pf.png │ │ ├── pg.png │ │ ├── ph.png │ │ ├── pk.png │ │ ├── pl.png │ │ ├── pr.png │ │ ├── ps.png │ │ ├── pt.png │ │ ├── pw.png │ │ ├── py.png │ │ ├── qa.png │ │ ├── re.png │ │ ├── ro.png │ │ ├── rs.png │ │ ├── ru.png │ │ ├── rw.png │ │ ├── sa.png │ │ ├── sb.png │ │ ├── sc.png │ │ ├── sd.png │ │ ├── se.png │ │ ├── sg.png │ │ ├── si.png │ │ ├── sk.png │ │ ├── sl.png │ │ ├── sm.png │ │ ├── sn.png │ │ ├── so.png │ │ ├── sr.png │ │ ├── st.png │ │ ├── sv.png │ │ ├── sy.png │ │ ├── sz.png │ │ ├── tc.png │ │ ├── td.png │ │ ├── tg.png │ │ ├── th.png │ │ ├── tj.png │ │ ├── tl.png │ │ ├── tm.png │ │ ├── tn.png │ │ ├── to.png │ │ ├── tr.png │ │ ├── tt.png │ │ ├── tv.png │ │ ├── tw.png │ │ ├── tz.png │ │ ├── ua.png │ │ ├── ug.png │ │ ├── us.png │ │ ├── uy.png │ │ ├── uz.png │ │ ├── va.png │ │ ├── vc.png │ │ ├── ve.png │ │ ├── vg.png │ │ ├── vi.png │ │ ├── vn.png │ │ ├── vu.png │ │ ├── ws.png │ │ ├── ye.png │ │ ├── za.png │ │ ├── zm.png │ │ └── zw.png │ │ ├── flow.png │ │ ├── folder.png │ │ ├── folder_32.png │ │ ├── folder_close.png │ │ ├── folder_open.png │ │ ├── forward.png │ │ ├── group.png │ │ ├── home.png │ │ ├── icon_32.png │ │ ├── import.png │ │ ├── log │ │ ├── bug.png │ │ ├── critical.png │ │ ├── error.png │ │ ├── fatal.png │ │ ├── info.png │ │ ├── success.png │ │ └── warning.png │ │ ├── map.png │ │ ├── mdiarea │ │ ├── close.png │ │ ├── maximize.png │ │ └── minimize.png │ │ ├── menu │ │ ├── down.png │ │ └── up.png │ │ ├── missing_large.png │ │ ├── new.png │ │ ├── orb │ │ └── coltypes │ │ │ ├── bigint.png │ │ │ ├── bool.png │ │ │ ├── bytearray.png │ │ │ ├── color.png │ │ │ ├── date.png │ │ │ ├── datetime.png │ │ │ ├── datetimewithtimezone.png │ │ │ ├── decimal.png │ │ │ ├── dict.png │ │ │ ├── directory.png │ │ │ ├── double.png │ │ │ ├── email.png │ │ │ ├── enum.png │ │ │ ├── filepath.png │ │ │ ├── foreignkey.png │ │ │ ├── html.png │ │ │ ├── image.png │ │ │ ├── index.png │ │ │ ├── integer.png │ │ │ ├── interval.png │ │ │ ├── password.png │ │ │ ├── pickle.png │ │ │ ├── string.png │ │ │ ├── text.png │ │ │ ├── time.png │ │ │ ├── url.png │ │ │ └── xml.png │ │ ├── os │ │ ├── lin.png │ │ ├── mac.png │ │ └── win.png │ │ ├── overlay │ │ └── close.png │ │ ├── paste.png │ │ ├── plugin.png │ │ ├── plugin_32.png │ │ ├── plugin_48.png │ │ ├── profile_48.png │ │ ├── query │ │ ├── add.png │ │ ├── back.png │ │ ├── clear.png │ │ ├── forward.png │ │ ├── load.png │ │ ├── move_down.png │ │ ├── move_up.png │ │ ├── query.png │ │ ├── radio.png │ │ ├── reload.png │ │ ├── remove.png │ │ └── save.png │ │ ├── refresh.png │ │ ├── remove.png │ │ ├── remove_dark.png │ │ ├── richtext │ │ ├── background_color.png │ │ ├── bold.png │ │ ├── center_align.png │ │ ├── font.png │ │ ├── font_color.png │ │ ├── italic.png │ │ ├── justify.png │ │ ├── left_align.png │ │ ├── list_ordered.png │ │ ├── list_unordered.png │ │ ├── print.png │ │ ├── right_right.png │ │ ├── strikethrough.png │ │ ├── subscript.png │ │ ├── superscript.png │ │ ├── table.png │ │ └── underline.png │ │ ├── save.png │ │ ├── save_as.png │ │ ├── scheme.png │ │ ├── sdk.png │ │ ├── search.png │ │ ├── settings.png │ │ ├── settings_32.png │ │ ├── shortcuts.png │ │ ├── sort_ascending.png │ │ ├── sort_descending.png │ │ ├── star.png │ │ ├── star_gray.png │ │ ├── status │ │ ├── error.png │ │ ├── ok.png │ │ ├── on_hold.png │ │ ├── ready.png │ │ ├── stopped.png │ │ ├── waiting.png │ │ └── warning.png │ │ ├── switch │ │ ├── switch_off.png │ │ └── switch_on.png │ │ ├── tab │ │ ├── add.png │ │ ├── down.png │ │ └── gear.png │ │ ├── terminal.png │ │ ├── treeview.png │ │ ├── treeview │ │ ├── closed.png │ │ ├── drag_multi.png │ │ ├── drag_single.png │ │ ├── file.png │ │ ├── fit.png │ │ ├── folder.png │ │ ├── folder_open.png │ │ ├── open.png │ │ ├── triangle_down.png │ │ └── triangle_right.png │ │ ├── triangle_down.png │ │ ├── triangle_left.png │ │ ├── triangle_right.png │ │ ├── triangle_up.png │ │ ├── types │ │ ├── binary.png │ │ ├── bool.png │ │ ├── code.png │ │ ├── file.png │ │ ├── float.png │ │ ├── image.png │ │ ├── int.png │ │ ├── link.png │ │ ├── list.png │ │ ├── path.png │ │ ├── percent.png │ │ ├── selection.png │ │ ├── str.png │ │ └── xml.png │ │ ├── ui │ │ ├── calendar.png │ │ ├── codeedit.png │ │ ├── colorpicker.png │ │ ├── combobox.png │ │ ├── console.png │ │ ├── groupbox.png │ │ ├── icon.png │ │ ├── lineedit.png │ │ ├── listbox.png │ │ ├── lock.png │ │ ├── multicheckbox.png │ │ ├── navigate.png │ │ ├── node.png │ │ ├── scrollarea.png │ │ ├── splitter.png │ │ ├── table.png │ │ ├── tags.png │ │ ├── textarea.png │ │ ├── tree.png │ │ ├── unlock.png │ │ └── view.png │ │ ├── vertical_layout.png │ │ ├── view │ │ ├── add.png │ │ ├── add_dark.png │ │ ├── back.png │ │ ├── close.png │ │ ├── detach.png │ │ ├── detach_copy.png │ │ ├── down.png │ │ ├── drag.png │ │ ├── export.png │ │ ├── forward.png │ │ ├── group.png │ │ ├── import.png │ │ ├── left.png │ │ ├── lock.png │ │ ├── maximize.png │ │ ├── new_panel.png │ │ ├── reset.png │ │ ├── right.png │ │ ├── split_horizontal.png │ │ ├── split_vertical.png │ │ ├── switch.png │ │ ├── tab_remove.png │ │ ├── up.png │ │ └── view.png │ │ ├── view_card.png │ │ ├── view_details.png │ │ ├── view_thumbnail.png │ │ ├── view_tiles.png │ │ ├── web.png │ │ ├── zoom.png │ │ ├── zoom_in.png │ │ └── zoom_out.png ├── styles.qrc └── styles │ └── projexui │ ├── icons │ ├── QCheckBox_indicator_checked.png │ ├── QCheckBox_indicator_checked_disabled.png │ ├── QCheckBox_indicator_checked_hover.png │ ├── QCheckBox_indicator_unchecked.png │ ├── QCheckBox_indicator_unchecked_disabled.png │ ├── QTabWidget_pane_border.png │ ├── QTabWidget_tab_border.png │ ├── QTabWidget_tab_first_border.png │ ├── QTabWidget_tab_first_selected_border.png │ └── QTabWidget_tab_selected_border.png │ └── style.css ├── setup.py └── xdk-win32.xbuild /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.md *.txt *.ini *.cfg *.rst 2 | recursive-include projexui *.ui *.ini 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | projexui 2 | === 3 | 4 | -------------------------------------------------------------------------------- /projexui/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Provides a library of reusable user interface components. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [ 9 | ('Yusuke Kamiyamane', 10 | 'Fuque icon pack from findicons.com under Creative Commons.'), 11 | ('Alexey Egorov', 12 | 'Checkbox icons for XTreeWidget from findicons.com under Freeware.'), 13 | ('Moment Icons', 14 | 'Folder icons from findicons.com under Creative Commons.'), 15 | ] 16 | __copyright__ = 'Copyright (c) 2011, Projex Software' 17 | __license__ = 'LGPL' 18 | 19 | # maintenance information 20 | __maintainer__ = 'Eric Hulser' 21 | __email__ = 'eric.hulser@gmail.com' 22 | 23 | #------------------------------------------------------------------------------ 24 | 25 | # auto-generated version file from releasing 26 | try: 27 | from ._version import __major__, __minor__, __revision__, __hash__ 28 | except ImportError: 29 | __major__ = 0 30 | __minor__ = 0 31 | __revision__ = 0 32 | __hash__ = '' 33 | 34 | __version_info__ = (__major__, __minor__, __revision__) 35 | __version__ = '{0}.{1}.{2}'.format(*__version_info__) 36 | 37 | 38 | from projexui.xcommands import * 39 | from projexui.xwidgetvalue import * 40 | from projexui.xdatatype import * 41 | 42 | DESIGNER_MODE = os.environ.get('DESIGNER_MODE', str('designer.exe' in sys.executable)) == 'True' 43 | 44 | -------------------------------------------------------------------------------- /projexui/completers/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines generic and reusable completer subclasses """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' -------------------------------------------------------------------------------- /projexui/configs/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines commonly used config settings for different apps. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ -------------------------------------------------------------------------------- /projexui/configs/xshortcutconfig/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines commonly used config settings for different apps. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ 17 | 18 | from projexui.configs.xshortcutconfig.xshortcutconfig import XShortcutConfig -------------------------------------------------------------------------------- /projexui/configs/xshortcutconfig/xshortcutconfig.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines commonly used config settings for different apps. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ 17 | 18 | from projexui import resources 19 | 20 | from projexui.dialogs.xconfigdialog import XConfigPlugin 21 | from projexui.configs.xshortcutconfig.xshortcutwidget import XShortcutWidget 22 | 23 | class XShortcutConfig(XConfigPlugin): 24 | def __init__( self, 25 | configGroup = 'User Interface', 26 | title = 'Shortcuts', 27 | dataSet = None, 28 | uifile = '', 29 | iconfile = '' ): 30 | 31 | if ( not iconfile ): 32 | iconfile = resources.find('img/shortcuts.png') 33 | 34 | super(XShortcutConfig, self).__init__( 35 | configGroup, 36 | title, 37 | dataSet, 38 | uifile, 39 | iconfile) 40 | 41 | self.setWidgetClass(XShortcutWidget) -------------------------------------------------------------------------------- /projexui/designer/build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/projexui/designer/build/__init__.py -------------------------------------------------------------------------------- /projexui/dialogs/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Creates reusable Qt dialogs for various applications """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ -------------------------------------------------------------------------------- /projexui/dialogs/xaboutdialog/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines a generic, reusable about dialog to show tool info """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ 17 | 18 | from projexui.dialogs.xaboutdialog.xaboutdialog import XAboutDialog -------------------------------------------------------------------------------- /projexui/dialogs/xconfigdialog/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Creates a reusable configuration system for projects. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ 17 | 18 | from projexui.dialogs.xconfigdialog.xconfigdialog import XConfigDialog 19 | from projexui.dialogs.xconfigdialog.xconfigwidget import XConfigWidget 20 | from projexui.dialogs.xconfigdialog.xconfigplugin import XConfigPlugin -------------------------------------------------------------------------------- /projexui/dialogs/xshortcutdialog/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Allows a user to control shortcut hotkeys for a set of actions. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ 17 | 18 | from projexui.dialogs.xshortcutdialog.xshortcutdialog import XShortcutDialog -------------------------------------------------------------------------------- /projexui/dialogs/xwizardbrowserdialog/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Creates a reusable wizard browsing system for projects. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ 17 | 18 | from projexui.dialogs.xwizardbrowserdialog.xwizardbrowserdialog import \ 19 | XWizardBrowserDialog 20 | 21 | from projexui.dialogs.xwizardbrowserdialog.xwizardplugin import \ 22 | XWizardPlugin, XScaffoldWizardPlugin -------------------------------------------------------------------------------- /projexui/exporters/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines common commands that can be used to streamline ui development. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' -------------------------------------------------------------------------------- /projexui/exporters/__plugins__.py: -------------------------------------------------------------------------------- 1 | __recurse__ = False 2 | __toc__ = [r'projexui.exporters.xexcelexporter'] -------------------------------------------------------------------------------- /projexui/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Additional helper classes for interfaces. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ -------------------------------------------------------------------------------- /projexui/highlighters/__init__.py: -------------------------------------------------------------------------------- 1 | """ Defines the hook required for the PyInstaller to use projexui with it. """ 2 | 3 | # define authorship information 4 | __authors__ = ['Eric Hulser'] 5 | __author__ = ','.join(__authors__) 6 | __credits__ = [] 7 | __copyright__ = 'Copyright (c) 2011, Projex Software' 8 | __license__ = 'LGPL' 9 | 10 | import projex 11 | from . import __plugins__ 12 | projex.importmodules(__plugins__) -------------------------------------------------------------------------------- /projexui/highlighters/__plugins__.py: -------------------------------------------------------------------------------- 1 | __recurse__ = False 2 | __toc__ = [r'projexui.highlighters.xcodehighlighter', 3 | r'projexui.highlighters.xpythonhighlighter'] -------------------------------------------------------------------------------- /projexui/highlighters/xpythonhighlighter.py: -------------------------------------------------------------------------------- 1 | """ Defines the hook required for the PyInstaller to use projexui with it. """ 2 | 3 | # define authorship information 4 | __authors__ = ['Eric Hulser'] 5 | __author__ = ','.join(__authors__) 6 | __credits__ = [] 7 | __copyright__ = 'Copyright (c) 2011, Projex Software' 8 | __license__ = 'LGPL' 9 | 10 | from .xcodehighlighter import XCodeHighlighter 11 | 12 | class XPythonHighlighter(XCodeHighlighter): 13 | def __init__(self, parent=None): 14 | super(XPythonHighlighter, self).__init__(parent) 15 | 16 | # define additional highlighting rules 17 | self.definePattern(self.Style.Class, r'class (\w+)') 18 | self.definePattern(self.Style.Function, r'def (\w+)') 19 | self.definePattern(self.Style.Comment, r'#[^\n]*') 20 | self.definePattern(self.Style.String, r'\"[^\"]*\"') 21 | self.definePattern(self.Style.String, r"'[^']*'") 22 | self.defineMultiline(self.Style.String, r'"""', r'"""') 23 | self.setKeywords(('def', 'if', 'elif', 'else', 'class', 'exec', 'eval', 24 | 'return', 'for', 'while', 'break', 'yield', 'import', 25 | 'from', 'with', 'print', 'is', 'not', 'in', 'self', 26 | 'super')) 27 | 28 | XPythonHighlighter.setFileTypes('.py') 29 | XCodeHighlighter.registerAddon('Python', XPythonHighlighter) 30 | -------------------------------------------------------------------------------- /projexui/menus/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines reusable menu's for Qt applications """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ -------------------------------------------------------------------------------- /projexui/pyi_hook.py: -------------------------------------------------------------------------------- 1 | """ Defines the hook required for the PyInstaller to use projexui with it. """ 2 | 3 | # define authorship information 4 | __authors__ = ['Eric Hulser'] 5 | __author__ = ','.join(__authors__) 6 | __credits__ = [] 7 | __copyright__ = 'Copyright (c) 2011, Projex Software' 8 | __license__ = 'LGPL' 9 | 10 | # maintanence information 11 | __maintainer__ = 'Projex Software' 12 | __email__ = 'team@projexsoftware.com' 13 | 14 | __all__ = ['hiddenimports', 'datas', 'excludes'] 15 | 16 | import os 17 | import projex.pyi 18 | 19 | if 'PROJEXUI_QT_WRAPPER' in os.environ: 20 | os.environ.setdefault('XQT_WRAPPER', os.environ['PROJEXUI_QT_WRAPPER']) 21 | 22 | from xqt.pyi_hook import hiddenimports as xqt_hidden 23 | from xqt.pyi_hook import datas as xqt_datas 24 | from xqt.pyi_hook import excludes as xqt_excludes 25 | 26 | basepath = os.path.dirname(__file__) 27 | m_hidden, m_data = projex.pyi.collect(basepath) 28 | 29 | if os.environ.get('PROJEXUI_BUILD_UI') != 'False': 30 | import projexui 31 | projexui.generateUiClasses(basepath) 32 | 33 | hiddenimports = m_hidden + xqt_hidden 34 | datas = m_data + xqt_datas 35 | excludes = xqt_excludes 36 | 37 | if os.environ.get('PROJEXUI_BUILD_UI') != 'False': 38 | datas = filter(lambda x: not x[0].endswith('.ui'), datas) -------------------------------------------------------------------------------- /projexui/qt.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module is a placeholder for the xqt library. There was a use 3 | in breaking out the Qt wrapping system to its own project. This 4 | module is kept for backward compatibility 5 | """ 6 | 7 | import os 8 | import sys 9 | 10 | if 'PROJEXUI_QT_WRAPPER' in os.environ: 11 | os.environ['XQT_WRAPPER'] = os.environ['PROJEXUI_QT_WRAPPER'] 12 | 13 | from xqt import * 14 | 15 | for key, value in sys.modules.items(): 16 | if key.startswith('xqt'): 17 | sys.modules[key.replace('xqt', 'projexui.qt')] = value -------------------------------------------------------------------------------- /projexui/resources/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Creates reusable resources for the gui systems """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ 17 | 18 | import os 19 | import logging 20 | 21 | # define globals 22 | from projexui import qt 23 | from projexui.xresourcemanager import XResourceManager 24 | from .rc import __plugins__ 25 | 26 | mgr = XResourceManager('projexui', 27 | os.path.dirname(__file__), 28 | __plugins__, 29 | defaults={'img': 'default'}, 30 | logger=logging.getLogger(__name__)) 31 | 32 | mgr.setup(globals()) 33 | 34 | -------------------------------------------------------------------------------- /projexui/resources/rc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/projexui/resources/rc/__init__.py -------------------------------------------------------------------------------- /projexui/resources/rc/__plugins__.py: -------------------------------------------------------------------------------- 1 | __recurse__ = False 2 | __toc__ = [r'projexui.resources.rc.pyqt4_projexui_apps_rc', 3 | r'projexui.resources.rc.pyqt4_projexui_default_rc', 4 | r'projexui.resources.rc.pyqt4_projexui_styles_rc', 5 | r'projexui.resources.rc.pyside_projexui_apps_rc', 6 | r'projexui.resources.rc.pyside_projexui_default_rc', 7 | r'projexui.resources.rc.pyside_projexui_styles_rc'] -------------------------------------------------------------------------------- /projexui/scripts/xdesigner_gen.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Generates designer plugins for a given path. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ 17 | 18 | # define version information (major,minor,maintanence) 19 | __depends__ = ['projex'] 20 | __version_info__ = (0, 0, 0) 21 | __version__ = '%i.%i.%i' % __version_info__ 22 | 23 | import logging 24 | import projexui.designer 25 | import sys 26 | 27 | if __name__ == '__main__': 28 | widgetPath, buildPath = (None, None) 29 | if len(sys.argv) > 1: 30 | widgetPath = sys.argv[1] 31 | if len(sys.argv) > 2: 32 | buildPath = sys.argv[2] 33 | 34 | logging.basicConfig() 35 | projexui.designer.generatePlugins(widgetPath, buildPath) -------------------------------------------------------------------------------- /projexui/scripts/xinterpreter.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Launches an XConsole application """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ 17 | 18 | # define version information (major,minor,maintanence) 19 | __depends__ = ['projex'] 20 | __version_info__ = (0, 0, 0) 21 | __version__ = '%i.%i.%i' % __version_info__ 22 | 23 | #------------------------------------------------------------------------------ 24 | 25 | import projex 26 | projex.requires('projexui') 27 | 28 | from projexui.qt.QtCore import Qt 29 | from projexui.qt.QtGui import QApplication 30 | from projexui.widgets.xconsoleedit import XConsoleEdit 31 | 32 | if __name__ == '__main__': 33 | app = None 34 | if not QApplication.instance(): 35 | app = QApplication([]) 36 | app.setStyle('plastique') 37 | 38 | console = XConsoleEdit(QApplication.instance().activeWindow()) 39 | console.setWindowTitle('XInterpreter') 40 | console.setWindowFlags(Qt.Dialog) 41 | console.show() 42 | 43 | if app: 44 | app.exec_() -------------------------------------------------------------------------------- /projexui/scripts/xui_gen.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Generates UI components for projexui (compiles qrc and ui files down). """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | import os 17 | 18 | if __name__ == '__main__': 19 | import projexui 20 | import projexui.resources 21 | 22 | # generate the resource files 23 | rscpath = os.path.dirname(projexui.resources.__file__) 24 | projexui.generateResourceFile(os.path.join(rscpath, 'default')) 25 | 26 | # generate the ui files 27 | projexui.generateUiClasses(os.path.dirname(projexui.__file__)) -------------------------------------------------------------------------------- /projexui/views/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines reusable views for the XViewWidget """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintenance information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | -------------------------------------------------------------------------------- /projexui/views/xconsoleview.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines a reusable widget for the XConsoleEdit. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | from xqt import QtGui 13 | from projexui.widgets.xviewwidget import XView 14 | from projexui.widgets.xconsoleedit import XConsoleEdit 15 | 16 | class XConsoleView(XView): 17 | def __init__(self, parent): 18 | super(XConsoleView, self).__init__(parent) 19 | 20 | # define custom properties 21 | self._console = XConsoleEdit(self) 22 | 23 | layout = QtGui.QHBoxLayout() 24 | layout.setContentsMargins(0, 0, 0, 0) 25 | layout.addWidget(self._console) 26 | self.setLayout(layout) 27 | 28 | self.initialized.connect(self.setupConsole) 29 | 30 | def closeEvent(self, event): 31 | self._console.cleanup() 32 | 33 | super(XConsoleView, self).closeEvent(event) 34 | 35 | def setupConsole(self): 36 | self._console.setScope(self.viewWidget().codeScope()) 37 | 38 | def console(self): 39 | """ 40 | Returns the console for this view. 41 | 42 | :return 43 | """ 44 | return self._console 45 | 46 | XConsoleView.setViewName('Console') 47 | 48 | -------------------------------------------------------------------------------- /projexui/views/xlogrecordview.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines a reusable widget for the XConsoleEdit. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | from xqt import QtGui 13 | from projexui.widgets.xviewwidget import XView 14 | from projexui.widgets.xlogrecordwidget import XLogRecordWidget 15 | 16 | class XLogRecordView(XView): 17 | def __init__(self, parent): 18 | super(XLogRecordView, self).__init__(parent) 19 | 20 | # define custom properties 21 | self._logger = XLogRecordWidget(self) 22 | layout = QtGui.QHBoxLayout() 23 | layout.setContentsMargins(0, 0, 0, 0) 24 | layout.addWidget(self._logger) 25 | self.setLayout(layout) 26 | 27 | def closeEvent(self, event): 28 | self._logger.cleanup() 29 | 30 | super(XLogRecordView, self).closeEvent(event) 31 | 32 | def logger(self): 33 | """ 34 | Returns the logger for this view. 35 | 36 | :return 37 | """ 38 | return self._logger 39 | 40 | def restoreXml(self, xml): 41 | self._logger.restoreXml(xml) 42 | 43 | def saveXml(self, xml): 44 | self._logger.saveXml(xml) 45 | 46 | XLogRecordView.setViewName('Logger') -------------------------------------------------------------------------------- /projexui/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Creates reusable Qt widgets for various applications. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ -------------------------------------------------------------------------------- /projexui/widgets/xcalendarwidget/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ 4 | Defines a calendar widget similar to the ones found in outlook or ical. 5 | """ 6 | 7 | # define authorship information 8 | __authors__ = ['Eric Hulser'] 9 | __author__ = ','.join(__authors__) 10 | __credits__ = [] 11 | __copyright__ = 'Copyright (c) 2011, Projex Software' 12 | __license__ = 'LGPL' 13 | 14 | # maintanence information 15 | __maintainer__ = 'Projex Software' 16 | __email__ = 'team@projexsoftware.com' 17 | 18 | #------------------------------------------------------------------------------ 19 | 20 | from projexui.widgets.xcalendarwidget.xcalendarwidget import XCalendarWidget 21 | from projexui.widgets.xcalendarwidget.xcalendarscene import XCalendarScene 22 | from projexui.widgets.xcalendarwidget.xcalendaritem import XCalendarItem 23 | 24 | __designer_plugins__ = [XCalendarWidget] -------------------------------------------------------------------------------- /projexui/widgets/xchart/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ 4 | Defines a chart widget for use in displaying data. 5 | 6 | :note This widget replaces the deprecated XChartWidget class. 7 | """ 8 | 9 | # define authorship information 10 | __authors__ = ['Eric Hulser'] 11 | __author__ = ','.join(__authors__) 12 | __credits__ = [] 13 | __copyright__ = 'Copyright (c) 2013, Projex Software' 14 | __license__ = 'LGPL' 15 | 16 | # maintenance information 17 | __maintainer__ = 'Projex Software' 18 | __email__ = 'team@projexsoftware.com' 19 | 20 | 21 | #------------------------------------------------------------------------------ 22 | 23 | from .xchart import XChart 24 | from .xchartdataset import XChartDataset 25 | from .xchartaxis import XChartAxis 26 | 27 | # import axis plugins 28 | from .axes.xnumberaxis import XNumberAxis 29 | from .axes.xdatetimeaxis import XDatetimeAxis 30 | from .axes.xdatasetaxis import XDatasetAxis 31 | 32 | # import bar chart plugins 33 | from .renderers.xbarrenderer import XBarRenderer 34 | from .renderers.xlinerenderer import XLineRenderer 35 | from .renderers.xpierenderer import XPieRenderer 36 | from .renderers.xdonutrenderer import XDonutRenderer 37 | 38 | __designer_plugins__ = [XChart] -------------------------------------------------------------------------------- /projexui/widgets/xchart/axes/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Defines Axis plugins for the chart widget. 3 | 4 | :note This widget replaces the deprecated XChartWidget class. 5 | """ 6 | 7 | # define authorship information 8 | __authors__ = ['Eric Hulser'] 9 | __author__ = ','.join(__authors__) 10 | __credits__ = [] 11 | __copyright__ = 'Copyright (c) 2013, Projex Software' 12 | __license__ = 'LGPL' 13 | 14 | # maintenance information 15 | __maintainer__ = 'Projex Software' 16 | __email__ = 'team@projexsoftware.com' -------------------------------------------------------------------------------- /projexui/widgets/xchart/axes/xdatasetaxis.py: -------------------------------------------------------------------------------- 1 | """ 2 | Defines a numeric axis for this chart plugin that will contain numberic values. 3 | """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2013, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintenance information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | import datetime 17 | from projexui.widgets.xchart.xchartaxis import XChartAxis 18 | 19 | class XDatasetAxis(XChartAxis): 20 | def calculateValues(self): 21 | """ 22 | Overloads the calculate values method to calculate the values for 23 | this axis based on the minimum and maximum values, and the number 24 | of steps desired. 25 | 26 | :return [, ..] 27 | """ 28 | chart = self.chart() 29 | if not chart: 30 | return super(XDatasetAxis, self).calculateValues() 31 | else: 32 | values = [] 33 | for dataset in chart.datasets(): 34 | values.append(dataset.name()) 35 | values.sort() 36 | return values -------------------------------------------------------------------------------- /projexui/widgets/xchart/renderers/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines renderer plugins for the XChart widget. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2013, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintenance information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | 17 | #------------------------------------------------------------------------------ 18 | -------------------------------------------------------------------------------- /projexui/widgets/xchartwidget/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines a chart widget for use in displaying data. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2012, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintenance information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | 17 | #------------------------------------------------------------------------------ 18 | 19 | from projexui.widgets.xchartwidget.xchartwidget import XChartWidget 20 | from projexui.widgets.xchartwidget.xchartwidgetitem import XChartWidgetItem -------------------------------------------------------------------------------- /projexui/widgets/xchartwidget/xchartwidget.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines a chart widget for use in displaying data. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2012, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintenance information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | 17 | #------------------------------------------------------------------------------ 18 | 19 | from projexui.qt.QtCore import Qt 20 | from projexui.qt.QtGui import QGraphicsView 21 | 22 | from projexui.widgets.xchartwidget.xchartscene import XChartScene 23 | 24 | class XChartWidget(QGraphicsView): 25 | """ """ 26 | Type = XChartScene.Type 27 | 28 | def __getattr__( self, key ): 29 | """ 30 | Passes along access to the scene properties for this widget. 31 | 32 | :param key | 33 | """ 34 | return getattr(self.scene(), key) 35 | 36 | def __init__( self, parent = None ): 37 | super(XChartWidget, self).__init__( parent ) 38 | 39 | # define custom properties 40 | 41 | # set default properties 42 | self.setAlignment(Qt.AlignLeft | Qt.AlignTop) 43 | self.setScene(XChartScene(self)) 44 | 45 | # create connections -------------------------------------------------------------------------------- /projexui/widgets/xcodeedit/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | """ Defines a more robust tab widget. """ 3 | 4 | # define authorship information 5 | __authors__ = ['Eric Hulser'] 6 | __author__ = ','.join(__authors__) 7 | __credits__ = [] 8 | __copyright__ = 'Copyright (c) 2011, Projex Software' 9 | 10 | #------------------------------------------------------------------------------ 11 | 12 | from projexui.widgets.xcodeedit.xcodeedit import XCodeEdit, XNumberArea -------------------------------------------------------------------------------- /projexui/widgets/xcollapsibleloggerwidget/__init__.py: -------------------------------------------------------------------------------- 1 | """ Defines the Logging record widget. """ 2 | 3 | # define authorship information 4 | __authors__ = ['Eric Hulser'] 5 | __author__ = ','.join(__authors__) 6 | __credits__ = [] 7 | __copyright__ = 'Copyright (c) 2011, Projex Software' 8 | __license__ = 'LGPL' 9 | 10 | #------------------------------------------------------------------------------ 11 | 12 | from projexui.widgets.xcollapsibleloggerwidget.xcollapsibleloggerwidget import XCollapsibleLoggerWidget -------------------------------------------------------------------------------- /projexui/widgets/xdateedit.py: -------------------------------------------------------------------------------- 1 | """ Creates an update to the standard QDateEdit widget. """ 2 | 3 | # define authorship information 4 | __authors__ = ['Eric Hulser'] 5 | __author__ = ','.join(__authors__) 6 | __credits__ = [] 7 | __copyright__ = 'Copyright (c) 2011, Projex Software' 8 | __license__ = 'LGPL' 9 | 10 | # maintanence information 11 | __maintainer__ = 'Projex Software' 12 | __email__ = 'team@projexsoftware.com' 13 | 14 | #---------------------------------------------------------------------- 15 | 16 | from projexui.qt.QtCore import QDate 17 | from projexui.qt.QtGui import QDateEdit 18 | 19 | class XDateEdit(QDateEdit): 20 | def __init__(self, parent=None): 21 | super(XDateEdit, self).__init__(parent) 22 | 23 | # define custom properties 24 | self.setCalendarPopup(True) 25 | self.setDate(QDate.currentDate()) 26 | 27 | __designer_plugins__ = [XDateEdit] -------------------------------------------------------------------------------- /projexui/widgets/xdatetimeedit.py: -------------------------------------------------------------------------------- 1 | """ Creates an update to the standard QDateTimeEdit widget. """ 2 | 3 | # define authorship information 4 | __authors__ = ['Eric Hulser'] 5 | __author__ = ','.join(__authors__) 6 | __credits__ = [] 7 | __copyright__ = 'Copyright (c) 2011, Projex Software' 8 | __license__ = 'LGPL' 9 | 10 | # maintanence information 11 | __maintainer__ = 'Projex Software' 12 | __email__ = 'team@projexsoftware.com' 13 | 14 | #---------------------------------------------------------------------- 15 | 16 | from projexui.qt.QtCore import QDateTime 17 | from projexui.qt.QtGui import QDateTimeEdit 18 | 19 | class XDateTimeEdit(QDateTimeEdit): 20 | def __init__(self, parent=None): 21 | super(XDateTimeEdit, self).__init__(parent) 22 | 23 | # define custom properties 24 | self.setCalendarPopup(True) 25 | self.setDateTime(QDateTime.currentDateTime()) 26 | 27 | __designer_plugins__ = [XDateTimeEdit] -------------------------------------------------------------------------------- /projexui/widgets/xdevtoolswidget.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines a reusable widget for the XConsoleEdit. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | #------------------------------------------------------------------------------ 13 | 14 | import logging 15 | from xqt import QtCore, QtGui, wrapVariant, unwrapVariant 16 | 17 | #from projexui.widgets.xlogrecordwidget import XLogRecordWidget 18 | #from projexui.widgets.xconsoleedit import XConsoleEdit 19 | #from projexui.widgets.xcodeedit import XCodeEdit 20 | 21 | import projexui 22 | 23 | from projexui.widgets.xviewwidget import XViewWidget 24 | from projexui.views.xconsoleview import XConsoleView 25 | from projexui.views.xscriptview import XScriptView 26 | from projexui.views.xlogrecordview import XLogRecordView 27 | 28 | class XDevToolsWidget(XViewWidget): 29 | def __init__(self, parent=None): 30 | super(XDevToolsWidget, self).__init__(parent) 31 | 32 | # register the views for the development 33 | self.setViewTypes([XConsoleView, 34 | XLogRecordView, 35 | XScriptView]) 36 | -------------------------------------------------------------------------------- /projexui/widgets/xganttwidget/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines a gantt chart widget for use in scheduling applications. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2012, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintenance information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | 17 | #------------------------------------------------------------------------------ 18 | 19 | from projexui.widgets.xganttwidget.xganttwidget import XGanttWidget 20 | from projexui.widgets.xganttwidget.xganttviewitem import XGanttViewItem 21 | from projexui.widgets.xganttwidget.xganttwidgetitem import XGanttWidgetItem 22 | 23 | __designer_plugins__ = [XGanttWidget] -------------------------------------------------------------------------------- /projexui/widgets/ximageslider/__init__.py: -------------------------------------------------------------------------------- 1 | """ [desc] """ 2 | 3 | # define authorship information 4 | __authors__ = ['Eric Hulser'] 5 | __author__ = ','.join(__authors__) 6 | __credits__ = [] 7 | __copyright__ = 'Copyright (c) 2011, Projex Software' 8 | __license__ = 'LGPL' 9 | 10 | #------------------------------------------------------------------------------ 11 | 12 | from .ximageslider import XImageSlider -------------------------------------------------------------------------------- /projexui/widgets/xloggerwidget/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Creates a widget for monitoring logger information. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ 17 | 18 | from .xloggerwidget import XLoggerWidget 19 | from .xloggertreewidget import XLoggerTreeWidget 20 | from .xloggercontrols import XLoggerControls 21 | from .xloggerwidgethandler import XLoggerWidgetHandler 22 | from .xloggercolorset import XLoggerColorSet 23 | 24 | __designer_plugins__ = [XLoggerWidget, XLoggerTreeWidget] -------------------------------------------------------------------------------- /projexui/widgets/xlogrecordwidget/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines a tree widget for tracking Python logging records. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | from .xlogrecordwidget import XLogRecordWidget -------------------------------------------------------------------------------- /projexui/widgets/xmenutemplatewidget/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines a widget for manipulating menu templates. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------- 17 | 18 | from projexui.widgets.xmenutemplatewidget.xmenutemplatewidget \ 19 | import XMenuTemplateWidget -------------------------------------------------------------------------------- /projexui/widgets/xnodewidget/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ 4 | Defines a node widget class that can be reused for generating 5 | various node systems. 6 | """ 7 | 8 | # define authorship information 9 | __authors__ = ['Eric Hulser'] 10 | __author__ = ','.join(__authors__) 11 | __credits__ = [] 12 | __copyright__ = 'Copyright (c) 2011, Projex Software' 13 | __license__ = 'LGPL' 14 | 15 | # maintanence information 16 | __maintainer__ = 'Projex Software' 17 | __email__ = 'team@projexsoftware.com' 18 | 19 | #------------------------------------------------------------------------------ 20 | 21 | from projexui.widgets.xnodewidget.xnodepalette import XNodePalette 22 | from projexui.widgets.xnodewidget.xnodehotspot import XNodeHotspot 23 | from projexui.widgets.xnodewidget.xnodewidget import XNodeWidget 24 | from projexui.widgets.xnodewidget.xnodescene import XNodeScene 25 | from projexui.widgets.xnodewidget.xnodelayout import XNodeLayout 26 | from projexui.widgets.xnodewidget.xnode import XNode, \ 27 | XNodeDispatcher,\ 28 | XNodeAnimation 29 | 30 | from projexui.widgets.xnodewidget.xnodeconnection import XNodeConnection, \ 31 | XConnectionLocation, \ 32 | XConnectionStyle 33 | 34 | __designer_plugins__ = [XNodeWidget] -------------------------------------------------------------------------------- /projexui/widgets/xorbbrowserwidget/__init__.py: -------------------------------------------------------------------------------- 1 | """ [desc] """ 2 | 3 | # define authorship information 4 | __authors__ = [''] 5 | __author__ = ','.join(__authors__) 6 | __credits__ = [] 7 | __copyright__ = 'Copyright (c) 2011, Projex Software' 8 | __license__ = 'LGPL' 9 | 10 | __maintainer__ = '' 11 | __email__ = '' 12 | 13 | 14 | #------------------------------------------------------------------------------ 15 | 16 | from projexui.widgets.xorbbrowserwidget.xorbbrowserwidget import XOrbBrowserWidget 17 | from projexui.widgets.xorbbrowserwidget.xorbbrowserfactory import XOrbBrowserFactory 18 | from projexui.widgets.xorbbrowserwidget.xcardwidget import XAbstractCardWidget,\ 19 | XBasicCardWidget 20 | 21 | __designer_plugins__ = [XOrbBrowserWidget] -------------------------------------------------------------------------------- /projexui/widgets/xorbcolumnedit/__init__.py: -------------------------------------------------------------------------------- 1 | """ Defines a widget for generically editing orb column instances. """ 2 | 3 | # define authorship information 4 | __authors__ = ['Eric Hulser'] 5 | __author__ = ','.join(__authors__) 6 | __credits__ = [] 7 | __copyright__ = 'Copyright (c) 2012, Projex Software' 8 | __license__ = 'LGPL' 9 | 10 | # maintenance information 11 | __maintainer__ = 'Projex Software' 12 | __email__ = 'team@projexsoftware.com' 13 | 14 | 15 | #------------------------------------------------------------------------------ 16 | 17 | from projexui.widgets.xorbcolumnedit.xorbcolumnedit import XOrbColumnEdit, \ 18 | IGNORED 19 | 20 | __designer_plugins__ = [XOrbColumnEdit] -------------------------------------------------------------------------------- /projexui/widgets/xorbcolumnedit/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | """ Defines the different plugins that will be used for this widget. """ 2 | 3 | # define authorship information 4 | __authors__ = ['Eric Hulser'] 5 | __author__ = ','.join(__authors__) 6 | __credits__ = [] 7 | __copyright__ = 'Copyright (c) 2012, Projex Software' 8 | __license__ = 'LGPL' 9 | 10 | # maintenance information 11 | __maintainer__ = 'Projex Software' 12 | __email__ = 'team@projexsoftware.com' 13 | 14 | #------------------------------------------------------------------------------ 15 | 16 | import glob 17 | import logging 18 | import os.path 19 | 20 | logger = logging.getLogger(__name__) 21 | widgets = {} 22 | 23 | _loaded = False 24 | def init(): 25 | global _loaded 26 | if ( _loaded ): 27 | return 28 | 29 | _loaded = True 30 | path = os.path.dirname(__file__) + '/*.py' 31 | filenames = glob.glob(path) 32 | 33 | for filename in filenames: 34 | modname = os.path.basename(filename).split('.')[0] 35 | if ( modname == '__init__' ): 36 | continue 37 | 38 | package = '%s.%s' % (__name__, modname) 39 | try: 40 | __import__(package) 41 | except ImportError: 42 | logger.warning('Could not load %s.' % package) 43 | 44 | -------------------------------------------------------------------------------- /projexui/widgets/xorbcolumnedit/plugins/reference.py: -------------------------------------------------------------------------------- 1 | """ Defines the different plugins that will be used for this widget. """ 2 | 3 | # define authorship information 4 | __authors__ = ['Eric Hulser'] 5 | __author__ = ','.join(__authors__) 6 | __credits__ = [] 7 | __copyright__ = 'Copyright (c) 2012, Projex Software' 8 | __license__ = 'LGPL' 9 | 10 | # maintenance information 11 | __maintainer__ = 'Projex Software' 12 | __email__ = 'team@projexsoftware.com' 13 | 14 | #------------------------------------------------------------------------------ 15 | 16 | from orb import ColumnType 17 | from projexui.widgets.xorbcolumnedit import plugins 18 | from projexui.widgets.xorbrecordbox import XOrbRecordBox 19 | 20 | class ForeignKeyEdit(XOrbRecordBox): 21 | def setValue( self, value ): 22 | self.setCurrentRecord(value) 23 | 24 | def value( self ): 25 | return self.currentRecord() 26 | 27 | #------------------------------------------------------------------------------ 28 | 29 | plugins.widgets[ColumnType.ForeignKey] = ForeignKeyEdit -------------------------------------------------------------------------------- /projexui/widgets/xorbgridedit/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines the XActionGroupWidget class. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ 17 | 18 | from projexui.widgets.xorbgridedit.xorbgridedit import XOrbGridEdit 19 | 20 | __designer_plugins__ = [XOrbGridEdit] -------------------------------------------------------------------------------- /projexui/widgets/xorbgroupingwidget/__init__.py: -------------------------------------------------------------------------------- 1 | """ [desc] """ 2 | 3 | # define authorship information 4 | __authors__ = ['Eric Hulser'] 5 | __author__ = ','.join(__authors__) 6 | __credits__ = [] 7 | __copyright__ = 'Copyright (c) 2011, Projex Software' 8 | __license__ = 'LGPL' 9 | 10 | # maintanence information 11 | __maintainer__ = 'Projex Software' 12 | __email__ = 'team@projexsoftware.com' 13 | 14 | 15 | #------------------------------------------------------------------------------ 16 | 17 | from projexui.widgets.xorbgroupingwidget.xorbgroupingwidget import XOrbGroupingWidget -------------------------------------------------------------------------------- /projexui/widgets/xorbgroupingwidget/ui/xorbgroupingwidget.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | Form 4 | 5 | 6 | 7 | 0 8 | 0 9 | 400 10 | 300 11 | 12 | 13 | 14 | Form 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /projexui/widgets/xorbquerywidget/__init__.py: -------------------------------------------------------------------------------- 1 | """ [desc] """ 2 | 3 | # define authorship information 4 | __authors__ = ['Eric Hulser'] 5 | __author__ = ','.join(__authors__) 6 | __credits__ = [] 7 | __copyright__ = 'Copyright (c) 2011, Projex Software' 8 | __license__ = 'LGPL' 9 | 10 | # maintanence information 11 | __maintainer__ = 'Projex Software' 12 | __email__ = 'team@projexsoftware.com' 13 | 14 | #------------------------------------------------------------------------------ 15 | 16 | from .xorbqueryplugin import XOrbQueryPlugin, XOrbQueryPluginFactory 17 | 18 | from .xorbquerywidget import XOrbQueryWidget 19 | from .xorbquickfilterwidget import XOrbQuickFilterWidget 20 | 21 | __designer_plugins__ = [XOrbQueryWidget, XOrbQuickFilterWidget] -------------------------------------------------------------------------------- /projexui/widgets/xorbrecordsetedit/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Defines the XQueryEdit widget that allows users to visually build queries into 3 | an ORB database. 4 | """ 5 | 6 | # define authorship information 7 | __authors__ = ['Eric Hulser'] 8 | __author__ = ','.join(__authors__) 9 | __credits__ = [] 10 | __copyright__ = 'Copyright (c) 2012, Projex Software' 11 | __license__ = 'LGPL' 12 | 13 | # maintenance information 14 | __maintainer__ = 'Projex Software' 15 | __email__ = 'team@projexsoftware.com' 16 | 17 | 18 | #------------------------------------------------------------------------------ 19 | 20 | from projexui.widgets.xorbrecordsetedit.xorbrecordsetedit import \ 21 | XOrbRecordSetEdit 22 | 23 | __designer_plugins__ = [XOrbRecordSetEdit] -------------------------------------------------------------------------------- /projexui/widgets/xorbtreewidget/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ [desc] """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintenance information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | 17 | #------------------------------------------------------------------------------ 18 | 19 | from projexui.widgets.xorbtreewidget.xorbtreewidget import XOrbTreeWidget 20 | from projexui.widgets.xorbtreewidget.xorbrecorditem import XOrbRecordItem 21 | from projexui.widgets.xorbtreewidget.xorbgroupitem import XOrbGroupItem 22 | 23 | __designer_plugins__ = [XOrbTreeWidget] -------------------------------------------------------------------------------- /projexui/widgets/xprogressfeedbackwidget/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Creates reusable Qt widgets for various applications. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ 17 | 18 | from .xprogressfeedbackwidget import XProgressFeedbackWidget 19 | 20 | __designer_plugins__ = [XProgressFeedbackWidget] -------------------------------------------------------------------------------- /projexui/widgets/xquerybuilderwidget/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines an interface to allow users to build their queries on the fly. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ 17 | 18 | from projexui.widgets.xquerybuilderwidget.xqueryrule \ 19 | import XQueryRule 20 | 21 | from projexui.widgets.xquerybuilderwidget.xquerylinewidget \ 22 | import XQueryLineWidget 23 | 24 | from projexui.widgets.xquerybuilderwidget.xquerybuilderwidget \ 25 | import XQueryBuilderWidget 26 | 27 | __designer_plugins__ = [XQueryBuilderWidget] -------------------------------------------------------------------------------- /projexui/widgets/xrichtextedit/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin python 2 | 3 | """ Defines a full rich text edit to handle WYSIWYG editing. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | 11 | # maintanence information 12 | __maintainer__ = 'Projex Software' 13 | __email__ = 'team@projexsoftware.com' 14 | 15 | #------------------------------------------------------------------------------ 16 | 17 | from projexui.widgets.xrichtextedit.xrichtextedit import XRichTextEdit 18 | 19 | __designer_plugins__= [XRichTextEdit] -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines a Document Editing widget based on the Qt Scintilla wrapper """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ 17 | 18 | from projexui.widgets.xscintillaedit.xscintillaedit import XScintillaEdit 19 | from projexui.widgets.xscintillaedit.xlanguage import XLanguage 20 | 21 | from projexui.widgets.xscintillaedit.xscintillaeditoptions import XScintillaEditOptions 22 | from projexui.widgets.xscintillaedit.xscintillaeditcolorset import XScintillaEditColorSet 23 | 24 | __designer_plugins__ = [XScintillaEdit] -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/lang/bash.ini: -------------------------------------------------------------------------------- 1 | [GLOBALS] 2 | name=Bash 3 | filetypes=.sh 4 | 5 | [LEXER] 6 | class=QsciLexerBash 7 | 8 | [COLOR_TYPES] 9 | Misc=0 10 | Comment=2 11 | String=5,6,13 12 | Error=1 13 | Operator=12,7 14 | Keyword=4 15 | Number=3,9 -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/lang/batch.ini: -------------------------------------------------------------------------------- 1 | [GLOBALS] 2 | name=Batch 3 | filetypes=.bat 4 | linecomment=; 5 | 6 | [LEXER] 7 | class=QsciLexerBatch 8 | 9 | [COLOR_TYPES] 10 | Comment=1 11 | Keyword=5,4,2 12 | Text=3 13 | Operator=7 14 | Attribute=6 -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/lang/cpp.ini: -------------------------------------------------------------------------------- 1 | [GLOBALS] 2 | name=C++ 3 | filetypes=.cpp;.c;.h;.hpp;.cxx 4 | linecomment=// 5 | 6 | [LEXER] 7 | class=QsciLexerCPP 8 | 9 | [COLOR_TYPES] 10 | Comment=1,3,17,18,2,15 11 | Misc=0 12 | String=6,7,12,13 13 | Method=19 14 | Keyword=5,16,9 15 | Number=4,8 16 | Operator=10 17 | Regex=14 -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/lang/css.ini: -------------------------------------------------------------------------------- 1 | [GLOBALS] 2 | name=CSS 3 | filetypes=.css 4 | linecomment=; 5 | 6 | [LEXER] 7 | class=QsciLexerCSS 8 | 9 | [COLOR_TYPES] 10 | Attribute=16,6,15,17,19 11 | Comment=9 12 | Keyword=11 13 | Method=2,20,21,3,18 14 | Misc=0 15 | Error=7,4 16 | Operator=5 17 | Tag=1 18 | String=13,14 19 | Text=8 -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/lang/html.ini: -------------------------------------------------------------------------------- 1 | [GLOBALS] 2 | name=HTML 3 | filetypes=.htm;.html;.erb;.pt 4 | tabwidth=2 5 | 6 | [LEXER] 7 | class=QsciLexerHTML 8 | 9 | [COLOR_TYPES] 10 | Method=99,100,115,114 11 | Comment=92,43,44,42,107,58,59,57,82,20,9,124,125,72 12 | Number=93,45,108,60,83,5,122,73 13 | Misc=91,41,106,56,81,118,71 14 | Keyword=96,46,47,111,61,62,84,121,74 15 | Operator=101,50,116,65,127 16 | String=94,95,97,98,51,49,48,112,113,110,109,66,64,63,85,87,6,7,119,126,120,75,77 17 | Regex=52,67 18 | Attribute=3,123 19 | Entity=10 20 | Tag=1,11 21 | Error=4,2 22 | Text=14,19,17,0 -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/lang/java.ini: -------------------------------------------------------------------------------- 1 | [GLOBALS] 2 | name=Java 3 | filetypes=.java 4 | linecomment=// 5 | 6 | [LEXER] 7 | class=QsciLexerJava 8 | 9 | [DESCRIPTORS] 10 | function1=^(?P[ \t]*)(?P[a-zA-Z0-9_\.]+)[ \t]*(:|=)[ \t]*function 11 | class1=^(?P[ \t]*)(?P[a-zA-Z0-9_\.]+)[ \t]*(:|=)[ \t]*new[ \t]*Class 12 | 13 | [COLOR_TYPES] 14 | Comment=1,3,17,18,2,15 15 | Misc=0 16 | String=6,7,12,13 17 | Method=19 18 | Text=11 19 | Keyword=5,16,9 20 | Number=4,8 21 | Operator=10 22 | Regex=14 -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/lang/javascript.ini: -------------------------------------------------------------------------------- 1 | [GLOBALS] 2 | name=Javascript 3 | filetypes=.js 4 | linecomment=// 5 | 6 | [LEXER] 7 | class=QsciLexerJavaScript 8 | 9 | [DESCRIPTORS] 10 | function1=^(?P[ \t]*)(?P[a-zA-Z0-9_\.]+)[ \t]*(:|=)[ \t]*function 11 | class1=^(?P[ \t]*)(?P[a-zA-Z0-9_\.]+)[ \t]*(:|=)[ \t]*new[ \t]*Class 12 | 13 | [COLOR_TYPES] 14 | Comment=1,3,17,18,2,15 15 | Misc=0 16 | String=6,7,12,13 17 | Method=19 18 | Text=11 19 | Keyword=5,16,9 20 | Number=4,8 21 | Operator=10 22 | Regex=14 -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/lang/lua.ini: -------------------------------------------------------------------------------- 1 | [GLOBALS] 2 | name=Lua 3 | filetypes=.lua 4 | 5 | [LEXER] 6 | class=QsciLexerLua 7 | 8 | [COLOR_TYPES] 9 | Comment=1,2 10 | Keyword=5 11 | Method=13,12,9 12 | String=7,8,6,14,12 13 | Operator=10 14 | Number=4 15 | Misc=0 16 | Text=11 -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/lang/mako.ini: -------------------------------------------------------------------------------- 1 | [GLOBALS] 2 | name=Mako 3 | filetypes=.mako 4 | tabwidth=2 5 | 6 | [LEXER] 7 | class=QsciLexerHTML 8 | 9 | [LEXER_PROPERTIES] 10 | prop1=makoTemplates:True 11 | 12 | [COLOR_TYPES] 13 | Method=99,100,115,114 14 | Comment=92,43,44,42,107,58,59,57,82,20,9,124,125,72 15 | Number=93,45,108,60,83,5,122,73 16 | Misc=91,41,106,56,81,118,71 17 | Keyword=96,46,47,111,61,62,84,121,74 18 | Operator=101,50,116,65,127 19 | String=94,95,97,98,51,49,48,112,113,110,109,66,64,63,85,87,6,7,119,126,120,75,77 20 | Regex=52,67 21 | Attribute=3,123 22 | Entity=10 23 | Tag=1,11 24 | Error=4,2 25 | Text=14,19,17,0 -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/lang/maxscript.ini: -------------------------------------------------------------------------------- 1 | [GLOBALS] 2 | name=Maxscript 3 | filetypes=.ms;.mcr 4 | linecomment=-- 5 | 6 | [LEXER] 7 | class=MaxscriptLexer 8 | module=blurdev.ide.lexers.maxscriptlexer 9 | 10 | [DESCRIPTORS] 11 | function1=(?P[ \t]*)(?Pfunction|fn)[ \t]*(?P[^=$]+) 12 | class1=(?P[ \t]*)(?Pstruct|rollout)[ \t]*(?P[^=($]+) 13 | 14 | [COLOR_TYPES] 15 | Comment=1,2 16 | Keyword=3 17 | Number=5 18 | Operator=4 19 | String=6 -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/lang/mu.ini: -------------------------------------------------------------------------------- 1 | [GLOBALS] 2 | name=Mu 3 | filetypes=.mu 4 | linecomment=// 5 | 6 | [LEXER] 7 | class=MuLexer 8 | module=blurdev.ide.lexers.mulexer 9 | 10 | [DESCRIPTORS] 11 | function1=^(?P[ \t]*)method:\s+(?P\w+\s*[^{]*) 12 | class1=^(?P[ \t]*)class:\s+(?P\w+\s*[^{]*) 13 | 14 | [COLOR_TYPES] 15 | Comment=1,3,17,18,2,15 16 | Misc=0 17 | String=6,7,12,13 18 | Method=19 19 | Operator=10 20 | Keyword=5,16,9 21 | Number=4,8 22 | Regex=14 -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/lang/perl.ini: -------------------------------------------------------------------------------- 1 | [GLOBALS] 2 | name=Perl 3 | filetypes=.perl 4 | 5 | [LEXER] 6 | class=QsciLexerPerl 7 | 8 | [COLOR_TYPES] 9 | Comment=2 10 | Misc=0 11 | Method=40 12 | String=24,6,26,27,28,29,30,23,7 13 | Error=1 14 | Text=11 15 | Keyword=5 16 | Number=4,12 17 | Operator=10 18 | Regex=17 -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/lang/puppet.ini: -------------------------------------------------------------------------------- 1 | [GLOBALS] 2 | name=Puppet 3 | filetypes=.pp 4 | linecomment=# 5 | 6 | [LEXER] 7 | class=QsciLexerPerl 8 | 9 | [COLOR_TYPES] 10 | Comment=2 11 | Misc=0 12 | Method=40 13 | String=24,6,26,27,28,29,30,23,7 14 | Error=1 15 | Text=11 16 | Keyword=5 17 | Number=4,12 18 | Operator=10 19 | Regex=17 -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/lang/python.ini: -------------------------------------------------------------------------------- 1 | [GLOBALS] 2 | name=Python 3 | filetypes=.py;.pyw;.pys;.b;.pytempl 4 | linecomment=# 5 | tabwidth=4 6 | 7 | [LEXER] 8 | class=QsciLexerPython 9 | 10 | [DESCRIPTORS] 11 | function1=^(?P[ \t]*)def\s+(?P[\w_]+\s*[^:]*): 12 | class1=^(?P[ \t]*)class\s+(?P[\w_]+\s*[^:]*): 13 | 14 | [COLOR_TYPES] 15 | Comment=1,12 16 | Keyword=5 17 | Operator=15,10 18 | Method=9,8 19 | Number=2 20 | Misc=0 21 | String=3,4,7,6,13 -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/lang/ruby.ini: -------------------------------------------------------------------------------- 1 | [GLOBALS] 2 | name=Ruby 3 | filetypes=.rb 4 | linecomment=# 5 | tabwidth=2 6 | 7 | [LEXER] 8 | class=QsciLexerRuby 9 | 10 | [DESCRIPTORS] 11 | function1=^(?P[ \t]*)def\s+(?P[\w_]+\s*[^:]*): 12 | class1=^(?P[ \t]*)class\s+(?P[\w_]+\s*[^:]*): 13 | 14 | [COLOR_TYPES] 15 | Comment=1,12 16 | Keyword=5 17 | Operator=15,10 18 | Method=9,8 19 | Number=2 20 | Misc=0 21 | String=3,4,7,6,13 -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/lang/scss.ini: -------------------------------------------------------------------------------- 1 | [GLOBALS] 2 | name=SCSS 3 | filetypes=.scss 4 | linecomment=// 5 | 6 | [LEXER] 7 | class=QsciLexerCSS 8 | 9 | [LEXER_PROPERTIES] 10 | prop1=SCSSLanguage:True 11 | 12 | [COLOR_TYPES] 13 | Attribute=16,6,15,17,19 14 | Comment=9 15 | Keyword=11 16 | Method=2,20,21,3,18 17 | Misc=0 18 | Error=4 19 | Operator= 20 | Tag=7,8 21 | String=13,14 22 | Text=1,5 -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/lang/xml.ini: -------------------------------------------------------------------------------- 1 | [GLOBALS] 2 | name=XML 3 | filetypes=.xml;.xsd;.ui;.sdk;.blurproj;.pref;.xbuild 4 | tabwidth=2 5 | 6 | [LEXER] 7 | class=QsciLexerXML 8 | 9 | [COLOR_TYPES] 10 | Method=99,100,115,114 11 | Comment=92,43,44,42,107,58,59,57,82,20,9,124,125,72 12 | Number=93,45,108,60,83,5,122,73 13 | Misc=91,41,106,56,81,118,71 14 | Keyword=96,46,47,111,61,62,84,121,74 15 | Operator=101,50,116,65,127 16 | String=94,95,97,98,51,49,48,112,113,110,109,66,64,63,85,87,6,7,119,126,120,75,77 17 | Regex=52,67 18 | Attribute=3,123 19 | Entity=10 20 | Tag=1,11 21 | Error=4,2 22 | Text=14,19,17,0 -------------------------------------------------------------------------------- /projexui/widgets/xscintillaedit/lang/yaml.ini: -------------------------------------------------------------------------------- 1 | [GLOBALS] 2 | name=YAML 3 | filetypes=.yaml 4 | 5 | [LEXER] 6 | class=QsciLexerYAML 7 | 8 | [COLOR_TYPES] 9 | Method=5 10 | Comment=1 11 | Number=4 12 | Misc= 13 | Keyword=3 14 | Operator=9 15 | String=7 16 | Regex= 17 | Attribute=6,2 18 | Entity= 19 | Tag= 20 | Error=8 21 | Text=0 -------------------------------------------------------------------------------- /projexui/widgets/xtreewidget/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ [desc] """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintenance information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | 17 | #------------------------------------------------------------------------------ 18 | 19 | from .xtreewidget import XTreeWidget, \ 20 | XTreeWidgetItem, \ 21 | XTreeWidgetDelegate, \ 22 | XLoaderItem 23 | 24 | __designer_plugins__ = [XTreeWidget] -------------------------------------------------------------------------------- /projexui/widgets/xviewwidget/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin python 2 | 3 | """ Defines an event-driven user customizable GUI widget interfce. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | 11 | # maintanence information 12 | __maintainer__ = 'Projex Software' 13 | __email__ = 'team@projexsoftware.com' 14 | 15 | from projexui.widgets.xviewwidget.xviewwidget import XViewWidget 16 | from projexui.widgets.xviewwidget.xviewdialog import XViewDialog 17 | from projexui.widgets.xviewwidget.xviewprofile import XViewProfile 18 | from projexui.widgets.xviewwidget.xview import XView,\ 19 | XViewDispatcher,\ 20 | xviewSlot 21 | 22 | from projexui.widgets.xviewwidget.xviewprofiletoolbar \ 23 | import XViewProfileToolBar 24 | 25 | from projexui.widgets.xviewwidget.xviewprofilemanagermenu \ 26 | import XViewProfileManagerMenu 27 | 28 | from projexui.widgets.xviewwidget.xviewprofilemanager \ 29 | import XViewProfileManager 30 | 31 | __designer_plugins__ = [XView, 32 | XViewWidget, 33 | XViewProfileManager, 34 | XViewProfileToolBar] -------------------------------------------------------------------------------- /projexui/widgets/xwalkthroughwidget/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Creates reusable Qt widgets for various applications. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ 17 | 18 | from .xwalkthroughwidget import XWalkthroughWidget 19 | from .xwalkthrough import XWalkthrough -------------------------------------------------------------------------------- /projexui/windows/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Creates reusable Qt window components. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #------------------------------------------------------------------------------ -------------------------------------------------------------------------------- /projexui/windows/xdkwindow/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Creates reusable Qt window components. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | # maintanence information 13 | __maintainer__ = 'Projex Software' 14 | __email__ = 'team@projexsoftware.com' 15 | 16 | #--------------------------------------------------------------------------- 17 | 18 | from projexui.windows.xdkwindow.xdkwindow import XdkWindow -------------------------------------------------------------------------------- /projexui/wizards/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines some additions the Qt Animation framework. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' -------------------------------------------------------------------------------- /projexui/wizards/xscaffoldwizard/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines some additions the Qt Animation framework. """ 4 | 5 | # define authorship information 6 | __authors__ = ['Eric Hulser'] 7 | __author__ = ','.join(__authors__) 8 | __credits__ = [] 9 | __copyright__ = 'Copyright (c) 2011, Projex Software' 10 | __license__ = 'LGPL' 11 | 12 | #------------------------------------------------------------------------------ 13 | 14 | from projexui.wizards.xscaffoldwizard.xscaffoldwizard import XScaffoldWizard -------------------------------------------------------------------------------- /projexui/xcoloricon.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ Defines some additions the Qt Animation framework. """ 4 | 5 | from projex.enum import enum 6 | from projexui.qt.QtCore import QSize 7 | from projexui.qt.QtGui import QIcon, QColor, QPixmap 8 | 9 | class XColorIcon(QIcon): 10 | Style = enum('Plain') 11 | 12 | def __init__(self, icon, style=Style.Plain): 13 | if type(icon) in (str, unicode): 14 | icon = QColor(icon) 15 | 16 | if isinstance(icon, QColor): 17 | icon = self.generatePixmap(icon, style) 18 | 19 | super(XColorIcon, self).__init__(icon) 20 | 21 | @staticmethod 22 | def generatePixmap(color, style=Style.Plain, size=None): 23 | """ 24 | Generates a new pixmap for the inputed color and style. If no 25 | size is provided, then the default 32x32 will be used. 26 | 27 | :return 28 | """ 29 | if size is None: 30 | size = QSize(32, 32) 31 | 32 | pixmap = QPixmap(size) 33 | 34 | # create a plain pixmap 35 | if style == XColorIcon.Style.Plain: 36 | pixmap.fill(color) 37 | 38 | return pixmap -------------------------------------------------------------------------------- /projexui/xpainter.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | """ 4 | Defines the XPainter class, a simple wrapper over the class 5 | that supports python's notion of enter/exit contexts to begin and end painting 6 | on a device. This is more reliable than using Qt's scoping as the object 7 | may linger in memory longer than in the C++ version. 8 | 9 | :usage |from xqt import QtGui 10 | |from projexui.xpainter import XPainter 11 | |class MyWidget(QtGui.QWidget): 12 | | def paintEvent(self, event): 13 | | with XPainter(self) as painter: 14 | | # do some paint operations 15 | """ 16 | 17 | # define authorship information 18 | __authors__ = ['Eric Hulser'] 19 | __author__ = ','.join(__authors__) 20 | __credits__ = [] 21 | __copyright__ = 'Copyright (c) 2011, Projex Software' 22 | __license__ = 'LGPL' 23 | 24 | # maintanence information 25 | __maintainer__ = 'Projex Software' 26 | __email__ = 'team@projexsoftware.com' 27 | 28 | 29 | from xqt import QtGui 30 | 31 | 32 | class XPainter(QtGui.QPainter): 33 | def __init__(self, device): 34 | super(XPainter, self).__init__() 35 | 36 | # store a reference to the paint device 37 | self._device = device 38 | 39 | def __enter__(self): 40 | self.begin(self._device) 41 | return self 42 | 43 | def __exit__(self, *args): 44 | self.end() 45 | 46 | 47 | -------------------------------------------------------------------------------- /resources/apps.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | apps\xdk.ico 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/apps/xdk.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/apps/xdk.ico -------------------------------------------------------------------------------- /resources/default/img/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/add.png -------------------------------------------------------------------------------- /resources/default/img/add_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/add_tab.png -------------------------------------------------------------------------------- /resources/default/img/advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/advanced.png -------------------------------------------------------------------------------- /resources/default/img/ajax_loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ajax_loader.gif -------------------------------------------------------------------------------- /resources/default/img/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/arrow.png -------------------------------------------------------------------------------- /resources/default/img/attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/attach.png -------------------------------------------------------------------------------- /resources/default/img/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/back.png -------------------------------------------------------------------------------- /resources/default/img/chart/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/chart/bar.png -------------------------------------------------------------------------------- /resources/default/img/chart/donut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/chart/donut.png -------------------------------------------------------------------------------- /resources/default/img/chart/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/chart/line.png -------------------------------------------------------------------------------- /resources/default/img/chart/pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/chart/pie.png -------------------------------------------------------------------------------- /resources/default/img/check_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/check_off.png -------------------------------------------------------------------------------- /resources/default/img/check_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/check_on.png -------------------------------------------------------------------------------- /resources/default/img/check_part.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/check_part.png -------------------------------------------------------------------------------- /resources/default/img/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/clock.png -------------------------------------------------------------------------------- /resources/default/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/close.png -------------------------------------------------------------------------------- /resources/default/img/columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/columns.png -------------------------------------------------------------------------------- /resources/default/img/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/config.png -------------------------------------------------------------------------------- /resources/default/img/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/copy.png -------------------------------------------------------------------------------- /resources/default/img/debug/break.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/debug/break.png -------------------------------------------------------------------------------- /resources/default/img/debug/continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/debug/continue.png -------------------------------------------------------------------------------- /resources/default/img/debug/current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/debug/current.png -------------------------------------------------------------------------------- /resources/default/img/debug/next_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/debug/next_function.png -------------------------------------------------------------------------------- /resources/default/img/debug/next_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/debug/next_line.png -------------------------------------------------------------------------------- /resources/default/img/debug/step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/debug/step.png -------------------------------------------------------------------------------- /resources/default/img/dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/dialog.png -------------------------------------------------------------------------------- /resources/default/img/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/down.png -------------------------------------------------------------------------------- /resources/default/img/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/edit.png -------------------------------------------------------------------------------- /resources/default/img/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/export.png -------------------------------------------------------------------------------- /resources/default/img/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/file.png -------------------------------------------------------------------------------- /resources/default/img/file_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/file_32.png -------------------------------------------------------------------------------- /resources/default/img/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/find.png -------------------------------------------------------------------------------- /resources/default/img/flags/_United Nations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/_United Nations.png -------------------------------------------------------------------------------- /resources/default/img/flags/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ad.png -------------------------------------------------------------------------------- /resources/default/img/flags/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ae.png -------------------------------------------------------------------------------- /resources/default/img/flags/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/af.png -------------------------------------------------------------------------------- /resources/default/img/flags/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ag.png -------------------------------------------------------------------------------- /resources/default/img/flags/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ai.png -------------------------------------------------------------------------------- /resources/default/img/flags/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/al.png -------------------------------------------------------------------------------- /resources/default/img/flags/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/am.png -------------------------------------------------------------------------------- /resources/default/img/flags/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/an.png -------------------------------------------------------------------------------- /resources/default/img/flags/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ao.png -------------------------------------------------------------------------------- /resources/default/img/flags/aq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/aq.png -------------------------------------------------------------------------------- /resources/default/img/flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ar.png -------------------------------------------------------------------------------- /resources/default/img/flags/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/as.png -------------------------------------------------------------------------------- /resources/default/img/flags/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/at.png -------------------------------------------------------------------------------- /resources/default/img/flags/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/au.png -------------------------------------------------------------------------------- /resources/default/img/flags/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/aw.png -------------------------------------------------------------------------------- /resources/default/img/flags/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/az.png -------------------------------------------------------------------------------- /resources/default/img/flags/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ba.png -------------------------------------------------------------------------------- /resources/default/img/flags/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/bb.png -------------------------------------------------------------------------------- /resources/default/img/flags/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/bd.png -------------------------------------------------------------------------------- /resources/default/img/flags/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/be.png -------------------------------------------------------------------------------- /resources/default/img/flags/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/bf.png -------------------------------------------------------------------------------- /resources/default/img/flags/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/bg.png -------------------------------------------------------------------------------- /resources/default/img/flags/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/bh.png -------------------------------------------------------------------------------- /resources/default/img/flags/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/bi.png -------------------------------------------------------------------------------- /resources/default/img/flags/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/bj.png -------------------------------------------------------------------------------- /resources/default/img/flags/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/bm.png -------------------------------------------------------------------------------- /resources/default/img/flags/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/bn.png -------------------------------------------------------------------------------- /resources/default/img/flags/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/bo.png -------------------------------------------------------------------------------- /resources/default/img/flags/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/br.png -------------------------------------------------------------------------------- /resources/default/img/flags/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/bs.png -------------------------------------------------------------------------------- /resources/default/img/flags/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/bt.png -------------------------------------------------------------------------------- /resources/default/img/flags/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/bw.png -------------------------------------------------------------------------------- /resources/default/img/flags/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/by.png -------------------------------------------------------------------------------- /resources/default/img/flags/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/bz.png -------------------------------------------------------------------------------- /resources/default/img/flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ca.png -------------------------------------------------------------------------------- /resources/default/img/flags/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/cd.png -------------------------------------------------------------------------------- /resources/default/img/flags/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/cf.png -------------------------------------------------------------------------------- /resources/default/img/flags/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/cg.png -------------------------------------------------------------------------------- /resources/default/img/flags/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ch.png -------------------------------------------------------------------------------- /resources/default/img/flags/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ci.png -------------------------------------------------------------------------------- /resources/default/img/flags/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ck.png -------------------------------------------------------------------------------- /resources/default/img/flags/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/cl.png -------------------------------------------------------------------------------- /resources/default/img/flags/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/cm.png -------------------------------------------------------------------------------- /resources/default/img/flags/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/cn.png -------------------------------------------------------------------------------- /resources/default/img/flags/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/co.png -------------------------------------------------------------------------------- /resources/default/img/flags/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/cr.png -------------------------------------------------------------------------------- /resources/default/img/flags/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/cu.png -------------------------------------------------------------------------------- /resources/default/img/flags/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/cv.png -------------------------------------------------------------------------------- /resources/default/img/flags/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/cy.png -------------------------------------------------------------------------------- /resources/default/img/flags/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/cz.png -------------------------------------------------------------------------------- /resources/default/img/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/de.png -------------------------------------------------------------------------------- /resources/default/img/flags/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/dj.png -------------------------------------------------------------------------------- /resources/default/img/flags/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/dk.png -------------------------------------------------------------------------------- /resources/default/img/flags/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/dm.png -------------------------------------------------------------------------------- /resources/default/img/flags/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/do.png -------------------------------------------------------------------------------- /resources/default/img/flags/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/dz.png -------------------------------------------------------------------------------- /resources/default/img/flags/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ec.png -------------------------------------------------------------------------------- /resources/default/img/flags/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ee.png -------------------------------------------------------------------------------- /resources/default/img/flags/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/eg.png -------------------------------------------------------------------------------- /resources/default/img/flags/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/eh.png -------------------------------------------------------------------------------- /resources/default/img/flags/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/er.png -------------------------------------------------------------------------------- /resources/default/img/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/es.png -------------------------------------------------------------------------------- /resources/default/img/flags/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/et.png -------------------------------------------------------------------------------- /resources/default/img/flags/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/fi.png -------------------------------------------------------------------------------- /resources/default/img/flags/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/fj.png -------------------------------------------------------------------------------- /resources/default/img/flags/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/fm.png -------------------------------------------------------------------------------- /resources/default/img/flags/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/fo.png -------------------------------------------------------------------------------- /resources/default/img/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/fr.png -------------------------------------------------------------------------------- /resources/default/img/flags/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ga.png -------------------------------------------------------------------------------- /resources/default/img/flags/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/gb.png -------------------------------------------------------------------------------- /resources/default/img/flags/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/gd.png -------------------------------------------------------------------------------- /resources/default/img/flags/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ge.png -------------------------------------------------------------------------------- /resources/default/img/flags/gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/gg.png -------------------------------------------------------------------------------- /resources/default/img/flags/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/gh.png -------------------------------------------------------------------------------- /resources/default/img/flags/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/gi.png -------------------------------------------------------------------------------- /resources/default/img/flags/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/gl.png -------------------------------------------------------------------------------- /resources/default/img/flags/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/gm.png -------------------------------------------------------------------------------- /resources/default/img/flags/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/gn.png -------------------------------------------------------------------------------- /resources/default/img/flags/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/gp.png -------------------------------------------------------------------------------- /resources/default/img/flags/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/gq.png -------------------------------------------------------------------------------- /resources/default/img/flags/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/gr.png -------------------------------------------------------------------------------- /resources/default/img/flags/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/gt.png -------------------------------------------------------------------------------- /resources/default/img/flags/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/gu.png -------------------------------------------------------------------------------- /resources/default/img/flags/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/gw.png -------------------------------------------------------------------------------- /resources/default/img/flags/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/gy.png -------------------------------------------------------------------------------- /resources/default/img/flags/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/hk.png -------------------------------------------------------------------------------- /resources/default/img/flags/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/hn.png -------------------------------------------------------------------------------- /resources/default/img/flags/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/hr.png -------------------------------------------------------------------------------- /resources/default/img/flags/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ht.png -------------------------------------------------------------------------------- /resources/default/img/flags/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/hu.png -------------------------------------------------------------------------------- /resources/default/img/flags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/id.png -------------------------------------------------------------------------------- /resources/default/img/flags/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ie.png -------------------------------------------------------------------------------- /resources/default/img/flags/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/il.png -------------------------------------------------------------------------------- /resources/default/img/flags/im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/im.png -------------------------------------------------------------------------------- /resources/default/img/flags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/in.png -------------------------------------------------------------------------------- /resources/default/img/flags/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/iq.png -------------------------------------------------------------------------------- /resources/default/img/flags/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ir.png -------------------------------------------------------------------------------- /resources/default/img/flags/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/is.png -------------------------------------------------------------------------------- /resources/default/img/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/it.png -------------------------------------------------------------------------------- /resources/default/img/flags/je.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/je.png -------------------------------------------------------------------------------- /resources/default/img/flags/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/jm.png -------------------------------------------------------------------------------- /resources/default/img/flags/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/jo.png -------------------------------------------------------------------------------- /resources/default/img/flags/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/jp.png -------------------------------------------------------------------------------- /resources/default/img/flags/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ke.png -------------------------------------------------------------------------------- /resources/default/img/flags/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/kg.png -------------------------------------------------------------------------------- /resources/default/img/flags/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/kh.png -------------------------------------------------------------------------------- /resources/default/img/flags/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ki.png -------------------------------------------------------------------------------- /resources/default/img/flags/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/km.png -------------------------------------------------------------------------------- /resources/default/img/flags/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/kn.png -------------------------------------------------------------------------------- /resources/default/img/flags/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/kp.png -------------------------------------------------------------------------------- /resources/default/img/flags/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/kr.png -------------------------------------------------------------------------------- /resources/default/img/flags/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/kw.png -------------------------------------------------------------------------------- /resources/default/img/flags/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ky.png -------------------------------------------------------------------------------- /resources/default/img/flags/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/kz.png -------------------------------------------------------------------------------- /resources/default/img/flags/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/la.png -------------------------------------------------------------------------------- /resources/default/img/flags/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/lb.png -------------------------------------------------------------------------------- /resources/default/img/flags/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/lc.png -------------------------------------------------------------------------------- /resources/default/img/flags/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/li.png -------------------------------------------------------------------------------- /resources/default/img/flags/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/lk.png -------------------------------------------------------------------------------- /resources/default/img/flags/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/lr.png -------------------------------------------------------------------------------- /resources/default/img/flags/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ls.png -------------------------------------------------------------------------------- /resources/default/img/flags/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/lt.png -------------------------------------------------------------------------------- /resources/default/img/flags/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/lu.png -------------------------------------------------------------------------------- /resources/default/img/flags/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/lv.png -------------------------------------------------------------------------------- /resources/default/img/flags/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ly.png -------------------------------------------------------------------------------- /resources/default/img/flags/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ma.png -------------------------------------------------------------------------------- /resources/default/img/flags/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/mc.png -------------------------------------------------------------------------------- /resources/default/img/flags/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/md.png -------------------------------------------------------------------------------- /resources/default/img/flags/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/me.png -------------------------------------------------------------------------------- /resources/default/img/flags/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/mg.png -------------------------------------------------------------------------------- /resources/default/img/flags/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/mh.png -------------------------------------------------------------------------------- /resources/default/img/flags/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/mk.png -------------------------------------------------------------------------------- /resources/default/img/flags/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ml.png -------------------------------------------------------------------------------- /resources/default/img/flags/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/mm.png -------------------------------------------------------------------------------- /resources/default/img/flags/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/mn.png -------------------------------------------------------------------------------- /resources/default/img/flags/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/mo.png -------------------------------------------------------------------------------- /resources/default/img/flags/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/mq.png -------------------------------------------------------------------------------- /resources/default/img/flags/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/mr.png -------------------------------------------------------------------------------- /resources/default/img/flags/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ms.png -------------------------------------------------------------------------------- /resources/default/img/flags/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/mt.png -------------------------------------------------------------------------------- /resources/default/img/flags/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/mu.png -------------------------------------------------------------------------------- /resources/default/img/flags/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/mv.png -------------------------------------------------------------------------------- /resources/default/img/flags/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/mw.png -------------------------------------------------------------------------------- /resources/default/img/flags/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/mx.png -------------------------------------------------------------------------------- /resources/default/img/flags/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/my.png -------------------------------------------------------------------------------- /resources/default/img/flags/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/mz.png -------------------------------------------------------------------------------- /resources/default/img/flags/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/na.png -------------------------------------------------------------------------------- /resources/default/img/flags/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/nc.png -------------------------------------------------------------------------------- /resources/default/img/flags/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ne.png -------------------------------------------------------------------------------- /resources/default/img/flags/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ng.png -------------------------------------------------------------------------------- /resources/default/img/flags/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ni.png -------------------------------------------------------------------------------- /resources/default/img/flags/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/nl.png -------------------------------------------------------------------------------- /resources/default/img/flags/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/no.png -------------------------------------------------------------------------------- /resources/default/img/flags/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/np.png -------------------------------------------------------------------------------- /resources/default/img/flags/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/nr.png -------------------------------------------------------------------------------- /resources/default/img/flags/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/nz.png -------------------------------------------------------------------------------- /resources/default/img/flags/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/om.png -------------------------------------------------------------------------------- /resources/default/img/flags/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/pa.png -------------------------------------------------------------------------------- /resources/default/img/flags/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/pe.png -------------------------------------------------------------------------------- /resources/default/img/flags/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/pf.png -------------------------------------------------------------------------------- /resources/default/img/flags/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/pg.png -------------------------------------------------------------------------------- /resources/default/img/flags/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ph.png -------------------------------------------------------------------------------- /resources/default/img/flags/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/pk.png -------------------------------------------------------------------------------- /resources/default/img/flags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/pl.png -------------------------------------------------------------------------------- /resources/default/img/flags/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/pr.png -------------------------------------------------------------------------------- /resources/default/img/flags/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ps.png -------------------------------------------------------------------------------- /resources/default/img/flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/pt.png -------------------------------------------------------------------------------- /resources/default/img/flags/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/pw.png -------------------------------------------------------------------------------- /resources/default/img/flags/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/py.png -------------------------------------------------------------------------------- /resources/default/img/flags/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/qa.png -------------------------------------------------------------------------------- /resources/default/img/flags/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/re.png -------------------------------------------------------------------------------- /resources/default/img/flags/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ro.png -------------------------------------------------------------------------------- /resources/default/img/flags/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/rs.png -------------------------------------------------------------------------------- /resources/default/img/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ru.png -------------------------------------------------------------------------------- /resources/default/img/flags/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/rw.png -------------------------------------------------------------------------------- /resources/default/img/flags/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/sa.png -------------------------------------------------------------------------------- /resources/default/img/flags/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/sb.png -------------------------------------------------------------------------------- /resources/default/img/flags/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/sc.png -------------------------------------------------------------------------------- /resources/default/img/flags/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/sd.png -------------------------------------------------------------------------------- /resources/default/img/flags/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/se.png -------------------------------------------------------------------------------- /resources/default/img/flags/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/sg.png -------------------------------------------------------------------------------- /resources/default/img/flags/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/si.png -------------------------------------------------------------------------------- /resources/default/img/flags/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/sk.png -------------------------------------------------------------------------------- /resources/default/img/flags/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/sl.png -------------------------------------------------------------------------------- /resources/default/img/flags/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/sm.png -------------------------------------------------------------------------------- /resources/default/img/flags/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/sn.png -------------------------------------------------------------------------------- /resources/default/img/flags/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/so.png -------------------------------------------------------------------------------- /resources/default/img/flags/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/sr.png -------------------------------------------------------------------------------- /resources/default/img/flags/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/st.png -------------------------------------------------------------------------------- /resources/default/img/flags/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/sv.png -------------------------------------------------------------------------------- /resources/default/img/flags/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/sy.png -------------------------------------------------------------------------------- /resources/default/img/flags/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/sz.png -------------------------------------------------------------------------------- /resources/default/img/flags/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/tc.png -------------------------------------------------------------------------------- /resources/default/img/flags/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/td.png -------------------------------------------------------------------------------- /resources/default/img/flags/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/tg.png -------------------------------------------------------------------------------- /resources/default/img/flags/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/th.png -------------------------------------------------------------------------------- /resources/default/img/flags/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/tj.png -------------------------------------------------------------------------------- /resources/default/img/flags/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/tl.png -------------------------------------------------------------------------------- /resources/default/img/flags/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/tm.png -------------------------------------------------------------------------------- /resources/default/img/flags/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/tn.png -------------------------------------------------------------------------------- /resources/default/img/flags/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/to.png -------------------------------------------------------------------------------- /resources/default/img/flags/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/tr.png -------------------------------------------------------------------------------- /resources/default/img/flags/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/tt.png -------------------------------------------------------------------------------- /resources/default/img/flags/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/tv.png -------------------------------------------------------------------------------- /resources/default/img/flags/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/tw.png -------------------------------------------------------------------------------- /resources/default/img/flags/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/tz.png -------------------------------------------------------------------------------- /resources/default/img/flags/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ua.png -------------------------------------------------------------------------------- /resources/default/img/flags/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ug.png -------------------------------------------------------------------------------- /resources/default/img/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/us.png -------------------------------------------------------------------------------- /resources/default/img/flags/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/uy.png -------------------------------------------------------------------------------- /resources/default/img/flags/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/uz.png -------------------------------------------------------------------------------- /resources/default/img/flags/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/va.png -------------------------------------------------------------------------------- /resources/default/img/flags/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/vc.png -------------------------------------------------------------------------------- /resources/default/img/flags/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ve.png -------------------------------------------------------------------------------- /resources/default/img/flags/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/vg.png -------------------------------------------------------------------------------- /resources/default/img/flags/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/vi.png -------------------------------------------------------------------------------- /resources/default/img/flags/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/vn.png -------------------------------------------------------------------------------- /resources/default/img/flags/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/vu.png -------------------------------------------------------------------------------- /resources/default/img/flags/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ws.png -------------------------------------------------------------------------------- /resources/default/img/flags/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/ye.png -------------------------------------------------------------------------------- /resources/default/img/flags/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/za.png -------------------------------------------------------------------------------- /resources/default/img/flags/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/zm.png -------------------------------------------------------------------------------- /resources/default/img/flags/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flags/zw.png -------------------------------------------------------------------------------- /resources/default/img/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/flow.png -------------------------------------------------------------------------------- /resources/default/img/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/folder.png -------------------------------------------------------------------------------- /resources/default/img/folder_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/folder_32.png -------------------------------------------------------------------------------- /resources/default/img/folder_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/folder_close.png -------------------------------------------------------------------------------- /resources/default/img/folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/folder_open.png -------------------------------------------------------------------------------- /resources/default/img/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/forward.png -------------------------------------------------------------------------------- /resources/default/img/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/group.png -------------------------------------------------------------------------------- /resources/default/img/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/home.png -------------------------------------------------------------------------------- /resources/default/img/icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/icon_32.png -------------------------------------------------------------------------------- /resources/default/img/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/import.png -------------------------------------------------------------------------------- /resources/default/img/log/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/log/bug.png -------------------------------------------------------------------------------- /resources/default/img/log/critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/log/critical.png -------------------------------------------------------------------------------- /resources/default/img/log/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/log/error.png -------------------------------------------------------------------------------- /resources/default/img/log/fatal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/log/fatal.png -------------------------------------------------------------------------------- /resources/default/img/log/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/log/info.png -------------------------------------------------------------------------------- /resources/default/img/log/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/log/success.png -------------------------------------------------------------------------------- /resources/default/img/log/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/log/warning.png -------------------------------------------------------------------------------- /resources/default/img/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/map.png -------------------------------------------------------------------------------- /resources/default/img/mdiarea/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/mdiarea/close.png -------------------------------------------------------------------------------- /resources/default/img/mdiarea/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/mdiarea/maximize.png -------------------------------------------------------------------------------- /resources/default/img/mdiarea/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/mdiarea/minimize.png -------------------------------------------------------------------------------- /resources/default/img/menu/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/menu/down.png -------------------------------------------------------------------------------- /resources/default/img/menu/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/menu/up.png -------------------------------------------------------------------------------- /resources/default/img/missing_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/missing_large.png -------------------------------------------------------------------------------- /resources/default/img/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/new.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/bigint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/bigint.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/bool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/bool.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/bytearray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/bytearray.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/color.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/date.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/datetime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/datetime.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/datetimewithtimezone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/datetimewithtimezone.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/decimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/decimal.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/dict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/dict.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/directory.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/double.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/double.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/email.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/enum.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/filepath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/filepath.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/foreignkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/foreignkey.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/html.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/image.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/index.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/integer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/integer.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/interval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/interval.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/password.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/pickle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/pickle.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/string.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/string.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/text.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/time.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/url.png -------------------------------------------------------------------------------- /resources/default/img/orb/coltypes/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/orb/coltypes/xml.png -------------------------------------------------------------------------------- /resources/default/img/os/lin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/os/lin.png -------------------------------------------------------------------------------- /resources/default/img/os/mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/os/mac.png -------------------------------------------------------------------------------- /resources/default/img/os/win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/os/win.png -------------------------------------------------------------------------------- /resources/default/img/overlay/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/overlay/close.png -------------------------------------------------------------------------------- /resources/default/img/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/paste.png -------------------------------------------------------------------------------- /resources/default/img/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/plugin.png -------------------------------------------------------------------------------- /resources/default/img/plugin_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/plugin_32.png -------------------------------------------------------------------------------- /resources/default/img/plugin_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/plugin_48.png -------------------------------------------------------------------------------- /resources/default/img/profile_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/profile_48.png -------------------------------------------------------------------------------- /resources/default/img/query/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/query/add.png -------------------------------------------------------------------------------- /resources/default/img/query/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/query/back.png -------------------------------------------------------------------------------- /resources/default/img/query/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/query/clear.png -------------------------------------------------------------------------------- /resources/default/img/query/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/query/forward.png -------------------------------------------------------------------------------- /resources/default/img/query/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/query/load.png -------------------------------------------------------------------------------- /resources/default/img/query/move_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/query/move_down.png -------------------------------------------------------------------------------- /resources/default/img/query/move_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/query/move_up.png -------------------------------------------------------------------------------- /resources/default/img/query/query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/query/query.png -------------------------------------------------------------------------------- /resources/default/img/query/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/query/radio.png -------------------------------------------------------------------------------- /resources/default/img/query/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/query/reload.png -------------------------------------------------------------------------------- /resources/default/img/query/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/query/remove.png -------------------------------------------------------------------------------- /resources/default/img/query/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/query/save.png -------------------------------------------------------------------------------- /resources/default/img/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/refresh.png -------------------------------------------------------------------------------- /resources/default/img/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/remove.png -------------------------------------------------------------------------------- /resources/default/img/remove_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/remove_dark.png -------------------------------------------------------------------------------- /resources/default/img/richtext/background_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/richtext/background_color.png -------------------------------------------------------------------------------- /resources/default/img/richtext/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/richtext/bold.png -------------------------------------------------------------------------------- /resources/default/img/richtext/center_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/richtext/center_align.png -------------------------------------------------------------------------------- /resources/default/img/richtext/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/richtext/font.png -------------------------------------------------------------------------------- /resources/default/img/richtext/font_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/richtext/font_color.png -------------------------------------------------------------------------------- /resources/default/img/richtext/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/richtext/italic.png -------------------------------------------------------------------------------- /resources/default/img/richtext/justify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/richtext/justify.png -------------------------------------------------------------------------------- /resources/default/img/richtext/left_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/richtext/left_align.png -------------------------------------------------------------------------------- /resources/default/img/richtext/list_ordered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/richtext/list_ordered.png -------------------------------------------------------------------------------- /resources/default/img/richtext/list_unordered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/richtext/list_unordered.png -------------------------------------------------------------------------------- /resources/default/img/richtext/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/richtext/print.png -------------------------------------------------------------------------------- /resources/default/img/richtext/right_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/richtext/right_right.png -------------------------------------------------------------------------------- /resources/default/img/richtext/strikethrough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/richtext/strikethrough.png -------------------------------------------------------------------------------- /resources/default/img/richtext/subscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/richtext/subscript.png -------------------------------------------------------------------------------- /resources/default/img/richtext/superscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/richtext/superscript.png -------------------------------------------------------------------------------- /resources/default/img/richtext/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/richtext/table.png -------------------------------------------------------------------------------- /resources/default/img/richtext/underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/richtext/underline.png -------------------------------------------------------------------------------- /resources/default/img/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/save.png -------------------------------------------------------------------------------- /resources/default/img/save_as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/save_as.png -------------------------------------------------------------------------------- /resources/default/img/scheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/scheme.png -------------------------------------------------------------------------------- /resources/default/img/sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/sdk.png -------------------------------------------------------------------------------- /resources/default/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/search.png -------------------------------------------------------------------------------- /resources/default/img/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/settings.png -------------------------------------------------------------------------------- /resources/default/img/settings_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/settings_32.png -------------------------------------------------------------------------------- /resources/default/img/shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/shortcuts.png -------------------------------------------------------------------------------- /resources/default/img/sort_ascending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/sort_ascending.png -------------------------------------------------------------------------------- /resources/default/img/sort_descending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/sort_descending.png -------------------------------------------------------------------------------- /resources/default/img/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/star.png -------------------------------------------------------------------------------- /resources/default/img/star_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/star_gray.png -------------------------------------------------------------------------------- /resources/default/img/status/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/status/error.png -------------------------------------------------------------------------------- /resources/default/img/status/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/status/ok.png -------------------------------------------------------------------------------- /resources/default/img/status/on_hold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/status/on_hold.png -------------------------------------------------------------------------------- /resources/default/img/status/ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/status/ready.png -------------------------------------------------------------------------------- /resources/default/img/status/stopped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/status/stopped.png -------------------------------------------------------------------------------- /resources/default/img/status/waiting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/status/waiting.png -------------------------------------------------------------------------------- /resources/default/img/status/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/status/warning.png -------------------------------------------------------------------------------- /resources/default/img/switch/switch_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/switch/switch_off.png -------------------------------------------------------------------------------- /resources/default/img/switch/switch_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/switch/switch_on.png -------------------------------------------------------------------------------- /resources/default/img/tab/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/tab/add.png -------------------------------------------------------------------------------- /resources/default/img/tab/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/tab/down.png -------------------------------------------------------------------------------- /resources/default/img/tab/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/tab/gear.png -------------------------------------------------------------------------------- /resources/default/img/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/terminal.png -------------------------------------------------------------------------------- /resources/default/img/treeview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/treeview.png -------------------------------------------------------------------------------- /resources/default/img/treeview/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/treeview/closed.png -------------------------------------------------------------------------------- /resources/default/img/treeview/drag_multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/treeview/drag_multi.png -------------------------------------------------------------------------------- /resources/default/img/treeview/drag_single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/treeview/drag_single.png -------------------------------------------------------------------------------- /resources/default/img/treeview/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/treeview/file.png -------------------------------------------------------------------------------- /resources/default/img/treeview/fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/treeview/fit.png -------------------------------------------------------------------------------- /resources/default/img/treeview/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/treeview/folder.png -------------------------------------------------------------------------------- /resources/default/img/treeview/folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/treeview/folder_open.png -------------------------------------------------------------------------------- /resources/default/img/treeview/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/treeview/open.png -------------------------------------------------------------------------------- /resources/default/img/treeview/triangle_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/treeview/triangle_down.png -------------------------------------------------------------------------------- /resources/default/img/treeview/triangle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/treeview/triangle_right.png -------------------------------------------------------------------------------- /resources/default/img/triangle_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/triangle_down.png -------------------------------------------------------------------------------- /resources/default/img/triangle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/triangle_left.png -------------------------------------------------------------------------------- /resources/default/img/triangle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/triangle_right.png -------------------------------------------------------------------------------- /resources/default/img/triangle_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/triangle_up.png -------------------------------------------------------------------------------- /resources/default/img/types/binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/types/binary.png -------------------------------------------------------------------------------- /resources/default/img/types/bool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/types/bool.png -------------------------------------------------------------------------------- /resources/default/img/types/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/types/code.png -------------------------------------------------------------------------------- /resources/default/img/types/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/types/file.png -------------------------------------------------------------------------------- /resources/default/img/types/float.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/types/float.png -------------------------------------------------------------------------------- /resources/default/img/types/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/types/image.png -------------------------------------------------------------------------------- /resources/default/img/types/int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/types/int.png -------------------------------------------------------------------------------- /resources/default/img/types/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/types/link.png -------------------------------------------------------------------------------- /resources/default/img/types/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/types/list.png -------------------------------------------------------------------------------- /resources/default/img/types/path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/types/path.png -------------------------------------------------------------------------------- /resources/default/img/types/percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/types/percent.png -------------------------------------------------------------------------------- /resources/default/img/types/selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/types/selection.png -------------------------------------------------------------------------------- /resources/default/img/types/str.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/types/str.png -------------------------------------------------------------------------------- /resources/default/img/types/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/types/xml.png -------------------------------------------------------------------------------- /resources/default/img/ui/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/calendar.png -------------------------------------------------------------------------------- /resources/default/img/ui/codeedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/codeedit.png -------------------------------------------------------------------------------- /resources/default/img/ui/colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/colorpicker.png -------------------------------------------------------------------------------- /resources/default/img/ui/combobox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/combobox.png -------------------------------------------------------------------------------- /resources/default/img/ui/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/console.png -------------------------------------------------------------------------------- /resources/default/img/ui/groupbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/groupbox.png -------------------------------------------------------------------------------- /resources/default/img/ui/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/icon.png -------------------------------------------------------------------------------- /resources/default/img/ui/lineedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/lineedit.png -------------------------------------------------------------------------------- /resources/default/img/ui/listbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/listbox.png -------------------------------------------------------------------------------- /resources/default/img/ui/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/lock.png -------------------------------------------------------------------------------- /resources/default/img/ui/multicheckbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/multicheckbox.png -------------------------------------------------------------------------------- /resources/default/img/ui/navigate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/navigate.png -------------------------------------------------------------------------------- /resources/default/img/ui/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/node.png -------------------------------------------------------------------------------- /resources/default/img/ui/scrollarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/scrollarea.png -------------------------------------------------------------------------------- /resources/default/img/ui/splitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/splitter.png -------------------------------------------------------------------------------- /resources/default/img/ui/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/table.png -------------------------------------------------------------------------------- /resources/default/img/ui/tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/tags.png -------------------------------------------------------------------------------- /resources/default/img/ui/textarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/textarea.png -------------------------------------------------------------------------------- /resources/default/img/ui/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/tree.png -------------------------------------------------------------------------------- /resources/default/img/ui/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/unlock.png -------------------------------------------------------------------------------- /resources/default/img/ui/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/ui/view.png -------------------------------------------------------------------------------- /resources/default/img/vertical_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/vertical_layout.png -------------------------------------------------------------------------------- /resources/default/img/view/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/add.png -------------------------------------------------------------------------------- /resources/default/img/view/add_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/add_dark.png -------------------------------------------------------------------------------- /resources/default/img/view/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/back.png -------------------------------------------------------------------------------- /resources/default/img/view/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/close.png -------------------------------------------------------------------------------- /resources/default/img/view/detach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/detach.png -------------------------------------------------------------------------------- /resources/default/img/view/detach_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/detach_copy.png -------------------------------------------------------------------------------- /resources/default/img/view/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/down.png -------------------------------------------------------------------------------- /resources/default/img/view/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/drag.png -------------------------------------------------------------------------------- /resources/default/img/view/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/export.png -------------------------------------------------------------------------------- /resources/default/img/view/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/forward.png -------------------------------------------------------------------------------- /resources/default/img/view/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/group.png -------------------------------------------------------------------------------- /resources/default/img/view/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/import.png -------------------------------------------------------------------------------- /resources/default/img/view/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/left.png -------------------------------------------------------------------------------- /resources/default/img/view/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/lock.png -------------------------------------------------------------------------------- /resources/default/img/view/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/maximize.png -------------------------------------------------------------------------------- /resources/default/img/view/new_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/new_panel.png -------------------------------------------------------------------------------- /resources/default/img/view/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/reset.png -------------------------------------------------------------------------------- /resources/default/img/view/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/right.png -------------------------------------------------------------------------------- /resources/default/img/view/split_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/split_horizontal.png -------------------------------------------------------------------------------- /resources/default/img/view/split_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/split_vertical.png -------------------------------------------------------------------------------- /resources/default/img/view/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/switch.png -------------------------------------------------------------------------------- /resources/default/img/view/tab_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/tab_remove.png -------------------------------------------------------------------------------- /resources/default/img/view/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/up.png -------------------------------------------------------------------------------- /resources/default/img/view/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view/view.png -------------------------------------------------------------------------------- /resources/default/img/view_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view_card.png -------------------------------------------------------------------------------- /resources/default/img/view_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view_details.png -------------------------------------------------------------------------------- /resources/default/img/view_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view_thumbnail.png -------------------------------------------------------------------------------- /resources/default/img/view_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/view_tiles.png -------------------------------------------------------------------------------- /resources/default/img/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/web.png -------------------------------------------------------------------------------- /resources/default/img/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/zoom.png -------------------------------------------------------------------------------- /resources/default/img/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/zoom_in.png -------------------------------------------------------------------------------- /resources/default/img/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/default/img/zoom_out.png -------------------------------------------------------------------------------- /resources/styles.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | styles\projexui\style.css 4 | 5 | 6 | styles\projexui\icons\QCheckBox_indicator_checked.png 7 | styles\projexui\icons\QCheckBox_indicator_checked_disabled.png 8 | styles\projexui\icons\QCheckBox_indicator_checked_hover.png 9 | styles\projexui\icons\QCheckBox_indicator_unchecked.png 10 | styles\projexui\icons\QCheckBox_indicator_unchecked_disabled.png 11 | styles\projexui\icons\QTabWidget_pane_border.png 12 | styles\projexui\icons\QTabWidget_tab_border.png 13 | styles\projexui\icons\QTabWidget_tab_first_border.png 14 | styles\projexui\icons\QTabWidget_tab_first_selected_border.png 15 | styles\projexui\icons\QTabWidget_tab_selected_border.png 16 | 17 | 18 | -------------------------------------------------------------------------------- /resources/styles/projexui/icons/QCheckBox_indicator_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/styles/projexui/icons/QCheckBox_indicator_checked.png -------------------------------------------------------------------------------- /resources/styles/projexui/icons/QCheckBox_indicator_checked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/styles/projexui/icons/QCheckBox_indicator_checked_disabled.png -------------------------------------------------------------------------------- /resources/styles/projexui/icons/QCheckBox_indicator_checked_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/styles/projexui/icons/QCheckBox_indicator_checked_hover.png -------------------------------------------------------------------------------- /resources/styles/projexui/icons/QCheckBox_indicator_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/styles/projexui/icons/QCheckBox_indicator_unchecked.png -------------------------------------------------------------------------------- /resources/styles/projexui/icons/QCheckBox_indicator_unchecked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/styles/projexui/icons/QCheckBox_indicator_unchecked_disabled.png -------------------------------------------------------------------------------- /resources/styles/projexui/icons/QTabWidget_pane_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/styles/projexui/icons/QTabWidget_pane_border.png -------------------------------------------------------------------------------- /resources/styles/projexui/icons/QTabWidget_tab_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/styles/projexui/icons/QTabWidget_tab_border.png -------------------------------------------------------------------------------- /resources/styles/projexui/icons/QTabWidget_tab_first_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/styles/projexui/icons/QTabWidget_tab_first_border.png -------------------------------------------------------------------------------- /resources/styles/projexui/icons/QTabWidget_tab_first_selected_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/styles/projexui/icons/QTabWidget_tab_first_selected_border.png -------------------------------------------------------------------------------- /resources/styles/projexui/icons/QTabWidget_tab_selected_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitesofcode/projexui/f18a73bec84df90b034ca69b9deea118dbedfc4d/resources/styles/projexui/icons/QTabWidget_tab_selected_border.png -------------------------------------------------------------------------------- /xdk-win32.xbuild: -------------------------------------------------------------------------------- 1 | # YAML builder definition 2 | type: PackageBuilder 3 | 4 | # define the python location 5 | package: 6 | name: projexui 7 | path: ./src 8 | 9 | # define global settings 10 | settings: 11 | company: Projex Software 12 | companyUrl: http://www.projexsoftware.com 13 | 14 | # define the path options 15 | paths: 16 | buildPath: ./.build/{platform} 17 | distributionPath: ./.dist/{platform} 18 | outputPath: ./bin 19 | hookPaths: ./hooks 20 | installPath: C:/Program Files (x86)/Projex 21 | 22 | # define the executable options 23 | executable: 24 | runtime: ./src/projexui/scripts/xdk.py 25 | exe: xdk_browser 26 | product: XDK Browser 27 | options: 28 | upx: False 29 | logo: ./resources/projexui/apps/xdk.ico 30 | 31 | # define installer options 32 | installer: 33 | name: xdk-browser-{version} 34 | logo: ./resources/projexui/apps/xdk.ico 35 | 36 | --------------------------------------------------------------------------------