1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License in the LICENSE-APACHE file or at:
//     https://www.apache.org/licenses/LICENSE-2.0

//! Library macros
//! 
//! This module provides three important macros:
//! 
//! -   [`derive(Widget)`] implements the [`Widget`] trait (including super-traits
//!     like [`Core`] and optionally [`Handler`]); this exists partly as a
//!     convenience, but **mostly because details of the [`Widget`] trait family
//!     are not part of the public API**, preventing manual implementation.
//! -   [`make_widget`] is a convenience macro to create a single instance of a
//!     custom widget type
//! -   [`derive(NoResponse)`] is a convenience macro to implement
//!     `From<NoResponse>` for the deriving enum
//! 
//! Note that these macros are defined in the external crate, `kas-macros`, only
//! because procedural macros must be defined in a special crate. The
//! `kas-macros` crate should not be used directly.
//! 
//! Note further that these macros require gated functionality only available
//! in nightly `rustc` builds:
//! ```
//! #![feature(unrestricted_attribute_tokens)]
//! #![feature(proc_macro_hygiene)]
//! ```
//! 
//! [`make_widget`]: #the-make_widget-macro
//! [`derive(Widget)`]: #the-derivewidget-macro
//! [`derive(NoResponse)`]: #the-derivenoresponse-macro
//! 
//! 
//! ## The `derive(Widget)` macro
//! 
//! The [`Widget`] trait requires multiple base traits to be implemented:
//! [`Core`] and [`Layout`]. These base traits should be considered
//! implementation details and not used directly; this macro therefore
//! implements both base traits and [`Widget`] directly.
//! 
//! Additionally, widgets are usually required to implement the [`Handler`]
//! trait. If (and only if) the deriving struct is marked with a
//! `#[handler]` attribute, the [`Handler`] trait will also be implemented.
//! Note that it is also possible to implement this trait manually.
//! 
//! ### Type attributes
//! 
//! This `derive` attribute may only be used on structs. This struct must have
//! a `#[widget]` attribute and may have a `#[handler]` attribute, as follows.
//! 
//! ```notest
//! #[widget(class = Class::X, ...)]
//! #[handler(response = ...)]
//! #[derive(Clone, Debug, Widget)]
//! struct MyWidget {
//!     ...
//! }
//! ```
//! 
//! The `#[widget]` attribute on the struct supports the following arguments:
//! 
//! -   `class = ...` (required) — an expression yielding the widget's [`Class`]
//! -   `layout = ...` (optional) — see below
//! 
//! Widgets with no children or only a single child do not need to specify the
//! `layout` (or may specify `single`), but those with multiple children must
//! specify this arguments, as follows:
//! 
//! -   `single` — single child only
//! -   `horizontal` — widgets are laid out in a row from left to right in the
//!     order specified
//! -   `vertical` — same except top-to-bottom
//! -   `grid` — widgets are placed on a grid, with position specified by the
//!     per-field `#[widget]` attribute
//! 
//! If there is a `#[handler]` attribute on the struct, then the [`Handler`]
//! trait will be implemented. This attribute expects the following arguments:
//! 
//! -   `response = ...` — the [`Handler::Response`] associated type
//! -   `generics = < X, Y, ... > where CONDS` — see below
//! 
//! Commonly the [`Handler`] implementation requires extra bounds on generic
//! types, and sometimes also additional type parameters; the `generics`
//! argument allows this. This argument is optional and if present must be the
//! last argument. Note that the generic types and bounds given are *added to*
//! the generics defined on the struct itself.
//! 
//! ### Fields
//! 
//! One struct field must be marked with `#[core]` and implement the [`Core`]
//! trait; usually this field has the specification `#[core] core: CoreData`.
//! 
//! A `#[widget]` attribute is used to denote fields as child widgets. This
//! attribute accepts the following optional arguments, for use with `grid`
//! layouts and for handlers:
//! 
//! -   `col = ...` — grid column, from left (defaults to 0)
//! -   `row = ...` — grid row, from top (defaults to 0)
//! -   `cspan = ...` — number of columns to span (defaults to 1)
//! -   `rspan = ...` — number of rows to span (defaults to 1)
//! -   `handler = ...` — the name (`f`) of a method defined on this type which
//!     handles a message from the child (type `M`) and converts it to the
//!     appropriate response type for this widget (`R`); this method should have
//!     signature `fn f(&mut self, tk: &TkWidget, msg: M) -> R`.
//!     
//! 
//! ### Examples
//! 
//! A short example, without an implementation for [`Handler`] (which could
//! still be implemented separately):
//! 
//! ```
//! #![feature(unrestricted_attribute_tokens)]
//! use kas::{Widget, Class, CoreData};
//! use kas::macros::Widget;
//! 
//! #[widget(class = Class::Window, layout = single)]
//! #[derive(Debug, Widget)]
//! struct MyWidget<W: Widget> {
//!     #[core] core: CoreData,
//!     #[widget] child: W,
//! }
//! ```
//! 
//! A longer example, including derivation of the [`Handler`] trait:
//! 
//! ```
//! #![feature(unrestricted_attribute_tokens)]
//! use kas::{Widget, Class, CoreData, TkWidget};
//! use kas::event::{Handler, err_unhandled};
//! use kas::macros::{Widget, NoResponse};
//! 
//! #[derive(Debug, NoResponse)]
//! enum ChildMessage { None }
//! 
//! #[derive(NoResponse)]
//! enum MyMessage { None }
//! 
//! #[widget(class = Class::Container)]
//! #[handler(response = MyMessage,
//!         generics = <> where W: Handler<Response = ChildMessage>)]
//! #[derive(Debug, Widget)]
//! struct MyWidget<W: Widget> {
//!     #[core] core: CoreData,
//!     #[widget(handler = handler)] child: W,
//! }
//! 
//! impl<W: Widget> MyWidget<W> {
//!     fn handler(&mut self, tk: &TkWidget, msg: ChildMessage) -> MyMessage {
//!         // handle msg and respond somehow
//!         err_unhandled(msg)
//!     }
//! }
//! ```
//! 
//! 
//! ## The `make_widget` macro
//! 
//! This macro supports widgets of the following classes:
//! 
//! -   Container
//! -   Frame
//! 
//! This exists purely to save you some typing. You could instead make your own
//! struct, derive `Widget` (with attributes to enable Core, Layout and Widget
//! implementation), manually implement `event::Handler`, and instantiate an
//! object.
//! 
//! Syntax should match the following Backus-Naur Form:
//! 
//! ```bnf
//! <input>     ::= <class> "=>" <response> ";" <fields> ";" <funcs>
//! <class>     ::= "container" "(" <layout> ")" | "frame"
//! <layout>    ::= "single" | "horizontal" | "vertical" | "grid"
//! <response>  ::= <type>
//! <fields>    ::= "" | <field> | <field> "," <fields>
//! <field>     ::= <w_attr> <opt_ident> <field_ty> = <expr>
//! <opt_ident> ::= "_" | <ident>
//! <field_ty>  ::= "" | ":" <type> | ":" impl <bound> | "->" <type> | ":" impl <bound> "->" <type>
//! <w_attr>    ::= "" | "#" "[" <widget> <w_params> "]"
//! <w_params>  ::= "" | "(" <w_args> ")"
//! <w_args>    ::= <w_arg> | <w_arg> "," <w_args>
//! <w_arg>     ::= <pos_arg> "=" <lit> | "handler" = <ident>
//! <pos_arg>   ::= "col" | "row" | "cspan" | "rspan"
//! <funcs>     ::= "" | <func> <funcs>
//! ```
//! where `<type>` is a type expression, `<expr>` is a (value) expression,
//! `<ident>` is an identifier, `<lit>` is a literal, `<path>` is a path,
//! `<bound>` is a trait object bound, and
//! `<func>` is a Rust method definition. `""` is the empty string (i.e. nothing).
//! 
//! The effect of this macro is to create an anonymous struct with the above
//! fields (plus an implicit `core`), implement [`Core`], [`Layout`], [`Widget`]
//! and [`Handler`] (with the specified `<response>` type), implement the
//! additional `<funcs>` listed on this type, then construct and return an
//! instance using the given value expressions to initialise each field.
//! 
//! Each field is considered a child widget if the `#[widget]` attribute is
//! present, or a simple data field otherwise. The specification of this
//! attribute is identical to that used when deriving `Widget`.
//! 
//! The `layout` specifier should be self-explanatory, with the exception of
//! `grid`, where each widget's position must be specified via attribute
//! arguments (e.g. `#[widget(col=1, row=2)]`). The `col` and `row` parameters
//! both default to 0, while `cspan` and `rspan` (column and row spans) both
//! default to 1.
//! 
//! Fields may have an identifier or may be anonymous (via usage of `_`). This
//! is often convenient for child widgets which don't need to be referred to.
//! 
//! Fields may have an explicit type (`ident : type = ...`), or the type may be
//! skipped, or (for widgets only) just the response type can be specified via
//! `ident -> type = ...`. Note that some type specification is usually needed
//! when referring to the field later.
//! 
//! Optionally, a message handler may be specified for child widgets via
//! `#[widget(handler = f)] ident = value` where `f` is a method defined on the
//! anonymous struct with signature `fn f(&mut self, tk: &TkWidget, msg: M) -> R`
//! where `M` is the type of response received from the child widget, and `R` is
//! the type of response sent from this widget.
//! 
//! ### Example
//! 
//! ```
//! #![feature(proc_macro_hygiene)]
//! #![feature(unrestricted_attribute_tokens)]
//! 
//! use kas::control::TextButton;
//! use kas::macros::{NoResponse, make_widget};
//! 
//! #[derive(NoResponse)]
//! enum OkCancel {
//!     None,
//!     Ok,
//!     Cancel,
//! }
//! 
//! let button_box = make_widget!{
//!     container(horizontal) => OkCancel;
//!     struct {
//!         #[widget] _ = TextButton::new("Ok", || OkCancel::Ok),
//!         #[widget] _ = TextButton::new("Cancel", || OkCancel::Cancel),
//!     }
//! };
//! ```
//! 
//! 
//! ## The `derive(NoResponse)` macro
//! 
//! This macro implements `From<NoResponse>` for the given type.
//! It assumes that the type is an enum with a simple variant named `None`.
//! 
//! ### Example
//! 
//! ```
//! use kas::macros::NoResponse;
//! 
//! #[derive(NoResponse)]
//! enum MyMessage { None, A, B };
//! ```
//! 
//! [`Core`]: crate::Core
//! [`Layout`]: crate::Layout
//! [`Widget`]: crate::Widget
//! [`Handler`]: crate::event::Handler
//! [`Class`]: crate::Class
//! [`CoreData`]: crate::CoreData
//! [`Handler::Response`]: ../kas/event/trait.Handler.html#associatedtype.Response

pub use kas_macros::{NoResponse, Widget, make_widget};