X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9a83f860948059b0273b5cc6d9e43fadad3ebfca..e5dcae09e6c207688b41c8b744764d32b7b39a46:/src/gtk/textentry.cpp diff --git a/src/gtk/textentry.cpp b/src/gtk/textentry.cpp index 1e0bd52389..0bf2b128e9 100644 --- a/src/gtk/textentry.cpp +++ b/src/gtk/textentry.cpp @@ -326,4 +326,80 @@ void wxTextEntry::SendMaxLenEvent() win->HandleWindowEvent(event); } +// ---------------------------------------------------------------------------- +// margins support +// ---------------------------------------------------------------------------- + +bool wxTextEntry::DoSetMargins(const wxPoint& margins) +{ +#if GTK_CHECK_VERSION(2,10,0) + GtkEntry* entry = GetEntry(); + + if ( !entry ) + return false; + + const GtkBorder* oldBorder = gtk_entry_get_inner_border(entry); + GtkBorder* newBorder; + + if ( oldBorder ) + { + newBorder = gtk_border_copy(oldBorder); + } + else + { + #if GTK_CHECK_VERSION(2,14,0) + newBorder = gtk_border_new(); + #else + newBorder = g_slice_new0(GtkBorder); + #endif + // Use some reasonable defaults for initial margins + newBorder->left = 2; + newBorder->right = 2; + + // These numbers seem to let the text remain vertically centered + // in common use scenarios when margins.y == -1. + newBorder->top = 3; + newBorder->bottom = 3; + } + + if ( margins.x != -1 ) + newBorder->left = (gint) margins.x; + + if ( margins.y != -1 ) + newBorder->top = (gint) margins.y; + + gtk_entry_set_inner_border(entry, newBorder); + +#if GTK_CHECK_VERSION(2,14,0) + gtk_border_free(newBorder); +#else + g_slice_free(GtkBorder, newBorder); +#endif + + return true; +#else + wxUnusedVar(margins); + return false; +#endif +} + +wxPoint wxTextEntry::DoGetMargins() const +{ +#if GTK_CHECK_VERSION(2,10,0) + GtkEntry* entry = GetEntry(); + + if ( !entry ) + return wxPoint(-1, -1); + + const GtkBorder* border = gtk_entry_get_inner_border(entry); + + if ( !border ) + return wxPoint(-1, -1); + + return wxPoint((wxCoord) border->left, (wxCoord) border->top); +#else + return wxPoint(-1, -1); +#endif +} + #endif // wxUSE_TEXTCTRL || wxUSE_COMBOBOX