[gtk-web: 1/3] Removed reference to GLADE.




commit 0c61b7c01f52d406141fcddd4eeaf298bb35e667
Author: beep-boop <oystein meat no>
Date:   Fri Apr 15 13:34:24 2022 +0000

    Removed reference to GLADE.

 _docs/getting-started/hello-world.md |  3 +--
 _docs/getting-started/index.md       |  4 +---
 _docs/installations/windows.md       | 14 ++------------
 _docs/language-bindings/cpp.md       |  3 +--
 _pages/index.html                    | 17 -----------------
 5 files changed, 5 insertions(+), 36 deletions(-)
---
diff --git a/_docs/getting-started/hello-world.md b/_docs/getting-started/hello-world.md
index dde848e..cce7677 100644
--- a/_docs/getting-started/hello-world.md
+++ b/_docs/getting-started/hello-world.md
@@ -10,8 +10,7 @@ the main container. The user interface is then built by adding buttons,
 drop-down menus, input fields, and other widgets to the window. If you are
 creating complex user interfaces it is recommended to use GtkBuilder and its
 GTK-specific markup description language, instead of assembling the
-interface manually. You can also use a visual user interface editor, like
-Glade.
+interface manually.
 
 GTK is event-driven. The toolkit listens for events such as a click on a
 button, and passes the event to your application.
diff --git a/_docs/getting-started/index.md b/_docs/getting-started/index.md
index 98f1715..f9901f3 100644
--- a/_docs/getting-started/index.md
+++ b/_docs/getting-started/index.md
@@ -18,8 +18,7 @@ drop down menus, and other widgets to a window.
 
 If you are creating complex user interfaces, it is recommended to describe
 the structure of your window using the [GtkBuilder][builder] XML description
-format, instead of assembling it manually. You can also use a visual UI
-editor that will generate the XML for you, like [Glade][glade].
+format, instead of assembling it manually.
 
 GTK is [event-driven](https://en.wikipedia.org/wiki/Event-driven_programming).
 The toolkit listens for events such as a pointer click on a button, or a
@@ -32,4 +31,3 @@ Use the [GTK API reference](https://docs.gtk.org/gtk4/) to
 learn more about the functionality provided by GTK.
 
 [builder]: https://docs.gtk.org/gtk4/class.Builder.html
-[glade]: https://glade.gnome.org
diff --git a/_docs/installations/windows.md b/_docs/installations/windows.md
index 787b8a4..f8b0be4 100644
--- a/_docs/installations/windows.md
+++ b/_docs/installations/windows.md
@@ -52,17 +52,7 @@ matches your platform and follow the installation instructions.
 pacman -S mingw-w64-x86_64-gtk3
 ```
 
-**Step 3. (recommended)**: Install the GTK core applications. `Glade` is a
-GUI designer for GTK. It lets you design your GUI and export it in XML
-format. You can then import your GUI from your code using the GtkBuilder
-API. Read the GtkBuilder section in the GTK manual for more information.
-
-To install Glade:
-```
-pacman -S mingw-w64-x86_64-glade
-```
-
-**Step 4. (optional)**: If you want to develop a GTK3 application in Python,
+**Step 3. (optional)**: If you want to develop a GTK3 application in Python,
 you need to install the Python bindings.
 
 If you develop in Python 3:
@@ -75,7 +65,7 @@ If you develop in Python 2:
 pacman -S mingw-w64-x86_64-python2-gobject
 ```
 
-**Step 5. (optional)**: Install the build tools. If you want to develop a
+**Step 4. (optional)**: Install the build tools. If you want to develop a
 GTK3 application in other languages like C, C++, Fortran, etc, you'll need a
 compiler like gcc and other development tools: ``` pacman -S
 mingw-w64-x86_64-toolchain base-devel ```
diff --git a/_docs/language-bindings/cpp.md b/_docs/language-bindings/cpp.md
index 3524167..77a0f0f 100644
--- a/_docs/language-bindings/cpp.md
+++ b/_docs/language-bindings/cpp.md
@@ -8,8 +8,7 @@
 [**gtkmm**](https://www.gtkmm.org/) is the official C++ interface for GTK.
 Highlights include typesafe callbacks, and a comprehensive set of widgets
 that are easily extensible via inheritance. You can create user interfaces
-either in code or with the [Glade User Interface
-designer](http://glade.gnome.org/), using `Gtk::Builder`. There's [extensive
+in code using `Gtk::Builder`. There's [extensive
 documentation](https://www.gtkmm.org/en/documentation.shtml), including API
 reference and a tutorial.
 
diff --git a/_pages/index.html b/_pages/index.html
index f51e58e..9f087cf 100644
--- a/_pages/index.html
+++ b/_pages/index.html
@@ -25,11 +25,6 @@ bindings_main_heading_description: Develop your GTK app with your language of ch
 apps_main_heading: Apps built with GTK
 apps_main_heading_description: Developers around the world have used GTK as a platform to create apps that 
solve problems faced by end-users.
 
-integrations_main_heading: Integrations for Rapid Application Development
-integrations_main_heading_description: |-
-  Glade is a RAD tool that enables quick and easy development of user interfaces for the GTK toolkit and the 
GNOME desktop environment.
-integrations_image: /assets/img/wall-glade.png
-
 features_main_heading: A feature-rich development tool
 features_main_heading_description: GTK has all the features that a widget toolkit needs to have. These 
features make it the most trusted toolkit for developing Linux applications.
 
@@ -178,18 +173,6 @@ news_and_events_list:
       {% endfor %}
     </div>
   </div>
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-5 pt-4">
-        <h2 class="font-weight-light mb-3">{{ page.integrations_main_heading }}</h2>
-        <span class="text-muted">{{ page.integrations_main_heading_description | markdownify }}</span>
-      </div>
-      <div class="col-lg-7 d-flex justify-content-center align-items-center py-4 py-lg-0 pl-lg-5">
-        <img src="{{ page.integrations_image | absolute_url }}" class="img-fluid w-100 shadow-sm" 
alt="Integration of Glade and GTK" />
-      </div>
-    </div>
-  </div>
-  <hr class="w-75 mt-5">
 </section>
 
 <section class="pt-3 pb-4" id="features">


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]