Exemplo n.º 1
0
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
# Read more about GNU General Public License :http://www.gnu.org/licenses/gpl.txt
#
import sys
import os
from PyQt4 import QtGui
from ffdraft.main import MainWindow

if __name__ == "__main__":
    app = QtGui.QApplication(sys.argv)
    f = open("ffdraft.css")
    try:
        css = f.read()
        app.setStyleSheet(css)
    finally:
        f.close()
    db = sys.argv[1] if len(sys.argv) > 1 else '{0}/ffdraft.db'.format(
        os.environ['HOME'])
    mainWin = MainWindow(db)
    mainWin.resize(1200, 1000)
    mainWin.show()
    sys.exit(app.exec_())