Merge branch 'trunk' of github.com:ryanmcgrath/cacao into trunk
* 'trunk' of github.com:ryanmcgrath/cacao: Standard macOS event handlers for TextField
This commit is contained in:
commit
c3922633b9
|
@ -11,14 +11,63 @@ use std::sync::Once;
|
|||
|
||||
use objc::declare::ClassDecl;
|
||||
use objc::runtime::{Class, Object, Sel, BOOL};
|
||||
use objc::{class, sel, sel_impl};
|
||||
use objc::{class, msg_send, sel, sel_impl};
|
||||
use objc_id::Id;
|
||||
|
||||
use crate::foundation::{id, YES, NO, NSUInteger};
|
||||
use crate::dragdrop::DragInfo;
|
||||
use crate::input::{TEXTFIELD_DELEGATE_PTR, TextFieldDelegate};
|
||||
use crate::foundation::{id, NSString, NSUInteger, NO, YES};
|
||||
use crate::input::{TextFieldDelegate, TEXTFIELD_DELEGATE_PTR};
|
||||
use crate::utils::load;
|
||||
|
||||
/// Called when editing this text field has ended (e.g. user pressed enter).
|
||||
extern "C" fn text_did_end_editing<T: TextFieldDelegate>(this: &mut Object, _: Sel, info: id) {
|
||||
let view = load::<T>(this, TEXTFIELD_DELEGATE_PTR);
|
||||
view.text_did_end_editing({
|
||||
let s = NSString::wrap(unsafe { msg_send![this, stringValue] });
|
||||
s.to_str().to_string()
|
||||
});
|
||||
}
|
||||
|
||||
extern "C" fn text_did_begin_editing<T: TextFieldDelegate>(this: &mut Object, _: Sel, info: id) {
|
||||
let view = load::<T>(this, TEXTFIELD_DELEGATE_PTR);
|
||||
view.text_did_begin_editing({
|
||||
let s = NSString::wrap(unsafe { msg_send![this, stringValue] });
|
||||
s.to_str().to_string()
|
||||
});
|
||||
}
|
||||
|
||||
extern "C" fn text_did_change<T: TextFieldDelegate>(this: &mut Object, _: Sel, info: id) {
|
||||
let view = load::<T>(this, TEXTFIELD_DELEGATE_PTR);
|
||||
view.text_did_change({
|
||||
let s = NSString::wrap(unsafe { msg_send![this, stringValue] });
|
||||
s.to_str().to_string()
|
||||
});
|
||||
}
|
||||
|
||||
extern "C" fn text_should_begin_editing<T: TextFieldDelegate>(
|
||||
this: &mut Object,
|
||||
_: Sel,
|
||||
info: id,
|
||||
) -> bool {
|
||||
let view = load::<T>(this, TEXTFIELD_DELEGATE_PTR);
|
||||
view.text_should_begin_editing({
|
||||
let s = NSString::wrap(unsafe { msg_send![this, stringValue] });
|
||||
s.to_str().to_string()
|
||||
})
|
||||
}
|
||||
|
||||
extern "C" fn text_should_end_editing<T: TextFieldDelegate>(
|
||||
this: &mut Object,
|
||||
_: Sel,
|
||||
info: id,
|
||||
) -> bool {
|
||||
let view = load::<T>(this, TEXTFIELD_DELEGATE_PTR);
|
||||
view.text_should_end_editing({
|
||||
let s = NSString::wrap(unsafe { msg_send![this, stringValue] });
|
||||
s.to_str().to_string()
|
||||
})
|
||||
}
|
||||
|
||||
/// Injects an `NSTextField` subclass. This is used for the default views that don't use delegates - we
|
||||
/// have separate classes here since we don't want to waste cycles on methods that will never be
|
||||
/// used if there's no delegates.
|
||||
|
@ -42,17 +91,37 @@ pub(crate) fn register_view_class_with_delegate<T: TextFieldDelegate>() -> *cons
|
|||
static INIT: Once = Once::new();
|
||||
|
||||
INIT.call_once(|| unsafe {
|
||||
let superclass = class!(NSView);
|
||||
let superclass = class!(NSTextField);
|
||||
// let superclass = class!(NSView);
|
||||
let mut decl = ClassDecl::new("RSTTextInputFieldWithDelegate", superclass).unwrap();
|
||||
|
||||
// A pointer to the "view controller" on the Rust side. It's expected that this doesn't
|
||||
// move.
|
||||
decl.add_ivar::<usize>(TEXTFIELD_DELEGATE_PTR);
|
||||
|
||||
decl.add_method(
|
||||
sel!(textDidEndEditing:),
|
||||
text_did_end_editing::<T> as extern "C" fn(&mut Object, _, _),
|
||||
);
|
||||
decl.add_method(
|
||||
sel!(textDidBeginEditing:),
|
||||
text_did_begin_editing::<T> as extern "C" fn(&mut Object, _, _),
|
||||
);
|
||||
decl.add_method(
|
||||
sel!(textDidChange:),
|
||||
text_did_change::<T> as extern "C" fn(&mut Object, _, _),
|
||||
);
|
||||
decl.add_method(
|
||||
sel!(textShouldBeginEditing:),
|
||||
text_should_begin_editing::<T> as extern "C" fn(&mut Object, Sel, *mut Object) -> bool,
|
||||
);
|
||||
decl.add_method(
|
||||
sel!(textShouldEndEditing:),
|
||||
text_should_end_editing::<T> as extern "C" fn(&mut Object, Sel, *mut Object) -> bool,
|
||||
);
|
||||
|
||||
VIEW_CLASS = decl.register();
|
||||
});
|
||||
|
||||
unsafe {
|
||||
VIEW_CLASS
|
||||
}
|
||||
unsafe { VIEW_CLASS }
|
||||
}
|
||||
|
|
|
@ -40,13 +40,13 @@
|
|||
//!
|
||||
//! For more information on Autolayout, view the module or check out the examples folder.
|
||||
|
||||
use objc_id::ShareId;
|
||||
use objc::runtime::{Class, Object};
|
||||
use objc::{msg_send, sel, sel_impl};
|
||||
use objc_id::ShareId;
|
||||
|
||||
use crate::foundation::{id, nil, YES, NO, NSArray, NSInteger, NSString};
|
||||
use crate::color::Color;
|
||||
use crate::layout::{Layout, LayoutAnchorX, LayoutAnchorY, LayoutAnchorDimension};
|
||||
use crate::foundation::{id, nil, NSArray, NSInteger, NSString, NO, YES};
|
||||
use crate::layout::{Layout, LayoutAnchorDimension, LayoutAnchorX, LayoutAnchorY};
|
||||
use crate::text::{Font, TextAlign};
|
||||
|
||||
#[cfg(target_os = "macos")]
|
||||
|
@ -118,7 +118,7 @@ pub struct TextField<T = ()> {
|
|||
pub center_x: LayoutAnchorX,
|
||||
|
||||
/// A pointer to the Objective-C runtime center Y layout constraint.
|
||||
pub center_y: LayoutAnchorY
|
||||
pub center_y: LayoutAnchorY,
|
||||
}
|
||||
|
||||
impl Default for TextField {
|
||||
|
@ -149,11 +149,14 @@ impl TextField {
|
|||
}
|
||||
}
|
||||
|
||||
impl<T> TextField<T> where T: TextFieldDelegate + 'static {
|
||||
impl<T> TextField<T>
|
||||
where
|
||||
T: TextFieldDelegate + 'static,
|
||||
{
|
||||
/// Initializes a new TextField with a given `TextFieldDelegate`. This enables you to respond to events
|
||||
/// and customize the view as a module, similar to class-based systems.
|
||||
pub fn with(delegate: T) -> TextField<T> {
|
||||
let delegate = Box::new(delegate);
|
||||
let mut delegate = Box::new(delegate);
|
||||
|
||||
let label = allocate_view(register_view_class_with_delegate::<T>);
|
||||
unsafe {
|
||||
|
@ -161,6 +164,7 @@ impl<T> TextField<T> where T: TextFieldDelegate + 'static {
|
|||
//let _: () = msg_send![view, setTranslatesAutoresizingMaskIntoConstraints:NO];
|
||||
let ptr: *const T = &*delegate;
|
||||
(&mut *label).set_ivar(TEXTFIELD_DELEGATE_PTR, ptr as usize);
|
||||
// let _: () = msg_send![self., setDelegate: label];
|
||||
};
|
||||
|
||||
let mut label = TextField {
|
||||
|
@ -178,7 +182,7 @@ impl<T> TextField<T> where T: TextFieldDelegate + 'static {
|
|||
objc: unsafe { ShareId::from_ptr(label) },
|
||||
};
|
||||
|
||||
//(&mut delegate).did_load(label.clone_as_handle());
|
||||
(&mut delegate).did_load(label.clone_as_handle());
|
||||
label.delegate = Some(delegate);
|
||||
label
|
||||
}
|
||||
|
@ -202,7 +206,7 @@ impl<T> TextField<T> {
|
|||
height: self.height.clone(),
|
||||
center_x: self.center_x.clone(),
|
||||
center_y: self.center_y.clone(),
|
||||
objc: self.objc.clone()
|
||||
objc: self.objc.clone(),
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -217,7 +221,6 @@ impl<T> TextField<T> {
|
|||
|
||||
/// Call this to set the background color for the backing layer.
|
||||
pub fn set_background_color<C: AsRef<Color>>(&self, color: C) {
|
||||
// @TODO: This is wrong.
|
||||
let cg = color.as_ref().cg_color();
|
||||
|
||||
unsafe {
|
||||
|
|
|
@ -1,4 +1,37 @@
|
|||
//! Various traits used for Labels.
|
||||
|
||||
use crate::input::TextField;
|
||||
|
||||
pub trait TextFieldDelegate {
|
||||
/// Used to cache subclass creations on the Objective-C side.
|
||||
/// You can just set this to be the name of your view type. This
|
||||
/// value *must* be unique per-type.
|
||||
const NAME: &'static str;
|
||||
|
||||
/// You should rarely (read: probably never) need to implement this yourself.
|
||||
/// It simply acts as a getter for the associated `NAME` const on this trait.
|
||||
fn subclass_name(&self) -> &'static str {
|
||||
Self::NAME
|
||||
}
|
||||
|
||||
/// Posts a notification when the text is no longer in edit mode.
|
||||
fn text_did_end_editing(&self, _value: String) {}
|
||||
|
||||
/// Requests permission to begin editing a text object.
|
||||
fn text_should_begin_editing(&self, _value: String) -> bool {
|
||||
true
|
||||
}
|
||||
|
||||
/// Posts a notification to the default notification center that the text is about to go into edit mode.
|
||||
fn text_did_begin_editing(&self, _value: String) {}
|
||||
|
||||
/// Posts a notification when the text changes, and forwards the message to the text field’s cell if it responds.
|
||||
fn text_did_change(&self, _value: String) {}
|
||||
|
||||
/// Performs validation on the text field’s new value.
|
||||
fn text_should_end_editing(&self, _value: String) -> bool {
|
||||
true
|
||||
}
|
||||
|
||||
fn did_load(&mut self, view: TextField) {}
|
||||
}
|
||||
|
|
|
@ -18,8 +18,24 @@ pub trait Layout {
|
|||
/// this shouldn't affect your code too much (if at all).
|
||||
fn get_backing_node(&self) -> ShareId<Object>;
|
||||
|
||||
/// This trait method should implement adding a view to the subview tree for a given view.
|
||||
fn add_subview<V: Layout>(&self, view: &V);
|
||||
/// Adds another Layout-backed control or view as a subview of this view.
|
||||
fn add_subview<V: Layout>(&self, view: &V) {
|
||||
let backing_node = self.get_backing_node();
|
||||
let subview_node = view.get_backing_node();
|
||||
|
||||
unsafe {
|
||||
let _: () = msg_send![&*backing_node, addSubview:&*subview_node];
|
||||
}
|
||||
}
|
||||
|
||||
/// Removes a control or view from the superview.
|
||||
fn remove_from_superview(&self) {
|
||||
let backing_node = self.get_backing_node();
|
||||
|
||||
unsafe {
|
||||
let _: () = msg_send![&*backing_node, removeFromSuperview];
|
||||
}
|
||||
}
|
||||
|
||||
/// Sets the `frame` for the view this trait is applied to.
|
||||
///
|
||||
|
|
Loading…
Reference in a new issue