]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/BrowserView.ui
Add a progress bar.
[PrivacyBrowserPC.git] / src / BrowserView.ui
index 43b958965aa64b55785534fa8cbc9c3af2ff0f40..11219fafbe48bd6b31d6160dc7f3f408bfd78b10 100644 (file)
 
 <ui version="4.0">
     <class>BrowserView</class>
-
+    <!-- Main widget. -->
     <widget class="QWidget" name="BrowserView">
-        <!-- TODO.  Make this maximized by default. -->
-        <property name="geometry">
-            <rect>
-                <x>0</x>
-                <y>0</y>
-                <width>700</width>
-                <height>500</height>
-            </rect>
-        </property>
-
-        <!-- Main widget. -->
+        <!-- Main layout. -->
         <layout class="QVBoxLayout">
             <!-- Set the spacing between items to 0. -->
             <property name="spacing">
                 <number>0</number>
             </property>
 
-            <!-- URL bar. -->
-            <item>
-                <layout class="QHBoxLayout">
-                    <!-- Back button. -->
-                    <item>
-                        <widget class="QPushButton" name="backButton">
-                            <property name="icon">
-                                <iconset theme="arrow-left" />
-                            </property>
-
-                            <property name="iconSize">
-                                <size>
-                                    <height>24</height>
-                                    <width>24</width>
-                                </size>
-                            </property>
-
-                            <property name="flat">
-                                <bool>true</bool>
-                            </property>
-                        </widget>
-                    </item>
-
-                    <!-- Forward button. -->
-                    <item>
-                        <widget class="QPushButton" name="forwardButton">
-                            <property name="icon">
-                                <iconset theme="arrow-right" />
-                            </property>
-
-                            <property name="iconSize">
-                                <size>
-                                    <height>24</height>
-                                    <width>24</width>
-                                </size>
-                            </property>
-
-                            <property name="flat">
-                                <bool>true</bool>
-                            </property>
-                        </widget>
-                    </item>
-
-                    <!-- Refresh button. -->
-                    <item>
-                        <widget class="QPushButton" name="refreshButton">
-                            <property name="icon">
-                                <iconset theme="view-refresh" />
-                            </property>
-
-                            <property name="iconSize">
-                                <size>
-                                    <height>24</height>
-                                    <width>24</width>
-                                </size>
-                            </property>
-
-                            <property name="flat">
-                                <bool>true</bool>
-                            </property>
-                        </widget>
-                    </item>
-
-                    <!-- Home button. -->
-                    <item>
-                        <widget class="QPushButton" name="homeButton">
-                            <property name="icon">
-                                <iconset theme="home" />
-                            </property>
-
-                            <property name="iconSize">
-                                <size>
-                                    <height>24</height>
-                                    <width>24</width>
-                                </size>
-                            </property>
-
-                            <property name="flat">
-                                <bool>true</bool>
-                            </property>
-                        </widget>
-                    </item>
-
-                    <!-- URL line edit. -->
-                    <item>
-                        <widget class="KLineEdit" name="urlLineEdit" />
-                    </item>
-
-                    <!-- JavaScript. -->
-                    <item>
-                        <widget class="QPushButton" name="javaScript">
-                            <property name="iconSize">
-                                <size>
-                                    <height>24</height>
-                                    <width>24</width>
-                                </size>
-                            </property>
-
-                            <property name="flat">
-                                <bool>true</bool>
-                            </property>
-                        </widget>
-                    </item>
-
-                    <!-- Domain Settings. -->
-                    <item>
-                        <widget class="QPushButton" name="domainSettingsButton">
-                            <property name="icon">
-                                <iconset theme="network-server-symbolic" />
-                            </property>
-
-                            <property name="iconSize">
-                                <size>
-                                    <height>24</height>
-                                    <width>24</width>
-                                </size>
-                            </property>
-
-                            <property name="flat">
-                                <bool>true</bool>
-                            </property>
-                        </widget>
-                    </item>
-                </layout>
-            </item>
-
             <!-- WebEngine view. -->
             <item>
                 <widget class="QWebEngineView" name="webEngineView" />