#!/usr/bin/env python3

# Copyright (C) 2015 Okami, okami@fuzetsu.info

# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.

# 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.

import os
import pkgutil
import platform
import sys

from PyQt4 import Qt
from PyQt4 import QtGui

from pqpw.vaultframe import VaultFrame


if __name__ == '__main__':
    # set taskbar icon in windows
    if platform.system() == 'Windows':
        import ctypes
        ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID('pqpw')

    app = QtGui.QApplication(sys.argv)
    qpixmap = QtGui.QPixmap()
    qpixmap.loadFromData(pkgutil.get_data('pqpw.media', 'icon.svg'))
    app.setWindowIcon(QtGui.QIcon(qpixmap))
    vaultframe = VaultFrame()

    vaultframe.show()
    for arg in sys.argv[1:]:
        if os.path.exists(arg):
            vaultframe.preload(arg)
            break

    app.exec_()
