Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Language Bindings
  4. RognoniNavigator - Browse Different, C++ to Python porting of "tab browser"/QtWeb
Forum Updated to NodeBB v4.3 + New Features

RognoniNavigator - Browse Different, C++ to Python porting of "tab browser"/QtWeb

Scheduled Pinned Locked Moved Language Bindings
2 Posts 1 Posters 1.2k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Offline
    R Offline
    RognoniNavigator
    wrote on last edited by
    #1

    Hi all,
    I need help to port the Qt "tab browser" (highly-customizable web browser)
    from C++ to Python, suggestions and modules development (?) are welcome :-)

    • autosaver.py - ?
    • bookmarks.py - ?
    • browserapplication.py - @RognoniTime
    • browsermainwindow.py - @RognoniTime
    • chasewidget.py - ?
    • cookiejar.py - ?
    • downloadmanager.py - ?
    • edittableview.py - ?
    • edittreeview.py - ?
    • history.py - ?
    • main.py - @RognoniTime
    • modelmenu.py - ?
    • networkaccessmanager.py - ?
    • searchlineedit.py - ?
    • settings.py - ?
    • squeezelabel.py - ?
    • tabwidget.py - ?
    • toolbarsearch.py - ?
    • urllineedit.py - ?
    • webview.py - ?
    • xbel.py - ?
    1 Reply Last reply
    0
    • R Offline
      R Offline
      RognoniNavigator
      wrote on last edited by
      #2

      Hello people, my first question: is a good solution the creation of the QList class like a wrapper of the Python list?

      @class QList:
      def init(self):
      self.l = []

      def append(self, e):
          self.l.append(e)
      
      def at(self, i):
          return self.l[i]
          
      def prepend(self, e):
          self.l.insert(0, e)
      
      def size(self):
          return len(self.l)
      

      @

      1 Reply Last reply
      0

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved