Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Adrien Plazas
libhandy
Commits
25710b8d
Commit
25710b8d
authored
Jan 23, 2020
by
Adrien Plazas
Browse files
Drop HdyFold
Fixes
Librem5/libhandy#181
.
parent
fb1ac331
Changes
8
Hide whitespace changes
Inline
Side-by-side
debian/libhandy-1-0.symbols
View file @
25710b8d
...
...
@@ -90,7 +90,6 @@ libhandy-1.so.0 libhandy-1-0 #MINVER#
hdy_expander_row_set_enable_expansion@LIBHANDY_1_0 0.0.6
hdy_expander_row_set_expanded@LIBHANDY_1_0 0.0.9
hdy_expander_row_set_show_enable_switch@LIBHANDY_1_0 0.0.6
hdy_fold_get_type@LIBHANDY_1_0 0.0~git20180429
hdy_get_enable_animations@LIBHANDY_1_0 0.0.11
hdy_gtk_window_get_icon_for_size@LIBHANDY_1_0 0.0.10
hdy_gtk_window_toggle_maximized@LIBHANDY_1_0 0.0.10
...
...
doc/handy-docs.xml
View file @
25710b8d
...
...
@@ -65,7 +65,6 @@
<title>
Helpers
</title>
<xi:include
href=
"xml/hdy-version.xml"
/>
<xi:include
href=
"xml/hdy-string-utf8.xml"
/>
<xi:include
href=
"xml/hdy-fold.xml"
/>
<xi:include
href=
"xml/hdy-list-box.xml"
/>
</chapter>
...
...
po/POTFILES.in
View file @
25710b8d
src/gtkprogresstracker.c
src/hdy-column.c
src/hdy-fold.c
src/hdy-header-group.c
src/hdy-leaflet.c
src/hdy-string-utf8.c
...
...
src/handy.h
View file @
25710b8d
...
...
@@ -34,7 +34,6 @@ G_BEGIN_DECLS
#include "hdy-dialog.h"
#include "hdy-enum-value-object.h"
#include "hdy-expander-row.h"
#include "hdy-fold.h"
#include "hdy-header-bar.h"
#include "hdy-header-group.h"
#include "hdy-keypad.h"
...
...
src/hdy-enums.c.in
View file @
25710b8d
...
...
@@ -3,7 +3,6 @@
#include "config.h"
#include "hdy-carousel.h"
#include "hdy-enums.h"
#include "hdy-fold.h"
#include "hdy-header-bar.h"
#include "hdy-leaflet.h"
#include "hdy-squeezer.h"
...
...
src/hdy-fold.c
deleted
100644 → 0
View file @
fb1ac331
/*
* Copyright (C) 2018 Purism SPC
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#include "config.h"
#include "hdy-fold.h"
/**
* SECTION:hdy-fold
* @short_description: Element folding states.
* @title: HdyFold
*/
/**
* HdyFold:
* @HDY_FOLD_UNFOLDED: The element isn't folded
* @HDY_FOLD_FOLDED: The element is folded
*
* Represents the fold of widgets and other objects which can be switched
* between folded and unfolded state on the fly, like HdyLeaflet.
*/
src/hdy-fold.h
deleted
100644 → 0
View file @
fb1ac331
/*
* Copyright (C) 2018 Purism SPC
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#pragma once
#if !defined(_HANDY_INSIDE) && !defined(HANDY_COMPILATION)
#error "Only <handy.h> can be included directly."
#endif
#include <glib-object.h>
#include "hdy-enums.h"
G_BEGIN_DECLS
typedef
enum
{
HDY_FOLD_UNFOLDED
,
HDY_FOLD_FOLDED
,
}
HdyFold
;
G_END_DECLS
src/meson.build
View file @
25710b8d
...
...
@@ -8,7 +8,6 @@ libhandy_resources = gnome.compile_resources(
)
hdy_enum_headers = ['hdy-carousel.h',
'hdy-fold.h',
'hdy-header-bar.h',
'hdy-leaflet.h',
'hdy-squeezer.h',
...
...
@@ -60,7 +59,6 @@ src_headers = [
'hdy-dialog.h',
'hdy-enum-value-object.h',
'hdy-expander-row.h',
'hdy-fold.h',
'hdy-header-bar.h',
'hdy-header-group.h',
'hdy-keypad.h',
...
...
@@ -103,7 +101,6 @@ src_sources = [
'hdy-dialog.c',
'hdy-enum-value-object.c',
'hdy-expander-row.c',
'hdy-fold.c',
'hdy-header-bar.c',
'hdy-header-group.c',
'hdy-keypad-button.c',
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment