Skip to content

Commit

Permalink
removed GTK components from sphinx auto documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ilcardella committed Feb 16, 2020
1 parent 73b010d commit 1ae468e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 43 deletions.
43 changes: 2 additions & 41 deletions doc/source/modules.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,47 +78,8 @@ GTK
^^^

The ``gtk`` module contains the gtk components and widgets of the
graphical interface

UIHandler
"""""""""

.. automodule:: UI.gtk.UIHandler

.. autoclass:: UIHandler
:members:

ConfirmDialog
"""""""""""""

.. automodule:: UI.gtk.ConfirmDialog

.. autoclass:: ConfirmDialog
:members:

MessageDialog
"""""""""""""

.. automodule:: UI.gtk.MessageDialog

.. autoclass:: MessageDialog
:members:

PortfolioPage
"""""""""""""

.. automodule:: UI.gtk.PortfolioPage

.. autoclass:: PortfolioPage
:members:

SettingsWindow
""""""""""""""

.. automodule:: UI.gtk.SettingsWindow

.. autoclass:: SettingsWindow
:members:
graphical interface. They are not documented due to a Sphinx issue when
importing the ``gi`` Python module

Utils
-----
Expand Down
3 changes: 1 addition & 2 deletions src/TradingMate.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
from Utils.ConfigurationManager import ConfigurationManager
from Utils.Utils import Utils

from UI.gtk.UIHandler import UIHandler


class TradingMate:
"""
Expand Down Expand Up @@ -167,6 +165,7 @@ def main():
# Initialise the business logic
tm = TradingMate()
# Initialise the user interface
from UI.gtk.UIHandler import UIHandler
UIHandler(tm).start()


Expand Down

0 comments on commit 1ae468e

Please sign in to comment.