#!/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 sys

from dbus.mainloop.qt import DBusQtMainLoop

from PyQt4 import QtGui

from aoisora.window import MainWindow


if __name__ == '__main__':
    DBusQtMainLoop(set_as_default=True)

    app = QtGui.QApplication(sys.argv)

    fallback_path_vars = (
        '/usr/local/share/aoisora/bluetooth.svg',
        '/usr/share/aoisora/bluetooth.svg',
        'share/aoisora/bluetooth.svg',
    )
    fallback_path = None
    for path in fallback_path_vars:
        if os.path.exists(path):
            fallback_path = path
    if fallback_path:
        icon = QtGui.QIcon.fromTheme('bluetooth', QtGui.QIcon(fallback_path))
    else:
        icon = QtGui.QIcon.fromTheme('bluetooth')
    app.setWindowIcon(icon)

    main_window = MainWindow()
    main_window.show()
    app.exec_()
