Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/xwt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-05-31Implemented folder selectorgtkmac-native-dialogLluis Sanchez Gual
2016-05-31Implement native backends for file dialogs in GtkOnMac engineLluis Sanchez Gual
2016-05-31Initial implementation of FileSelectorLluis Sanchez Gual
2016-05-24[ListView] Add method for start editing a cellLluis Sanchez Gual
2016-05-24[WPF] Fix calculation for Meanline on WPF.Jérémie Laval
We were mixing up point and device-independent unit in the equation, convert the former in the latter.
2016-05-09[Xwt.Wpf] Fix RichTextViewBackend.PlainTextAlan McGovern
The previous implementation returned the raw xml generated by the RichTextView, but what we actually wanted was the plain text content of the FlowDocument we generated.
2016-05-02Merge pull request #594 from thiagoabreu/fixmousepointVsevolod Kukol
Fix Mac Backend for current mouse location
2016-04-29Fix Mac Backend for current mouse locationThiago 'Jedi' Abreu
2016-04-11Make XS happyJeffrey Stedfast
2016-04-08[Mac] Fix the coordinates returned by Desktop.MouseLocationAlex Corrado
We need to unflip the Y-axis to return coordinates that are usable in places like WindowFrame.ScreenBounds.
2016-04-02Merge pull request #590 from sevoku/fix-font-backend-switchingVsevolod Kukol
Fix font backend switching Pt.2
2016-04-02Validate a font object when it is being assigned toVsevolod Kukol
TextLayout.Font directly.
2016-04-02Apply font settings on the default fallback fontVsevolod Kukol
when the backend needs to be switched on validation and the requested font is not supported by the new backend.
2016-04-02Clone font settings after system font backends swappingVsevolod Kukol
2016-03-27[Xwt] Add a way to set the parent of a `Confirm` dialogAlan McGovern
We don't want to rely on static variables which everyone else can set.
2016-03-16[Toolkit] Return validated backend from `GetSafeBackend`Alex Corrado
`ValidateObject` can now return a different object instead of throwing. Update `GetSafeBackend` to return the correct object in this case.
2016-03-16Reference the 64bit version of Xamarin.MacJeffrey Stedfast
2016-03-15Merge pull request #588 from cra0zy/gtk3fixVsevolod Kukol
Fix Gtk3 Build
2016-03-15Fix Gtk3 Buildcra0zy
2016-03-14Merge pull request #586 from sevoku/fix-gtk-mac-popover-borderVsevolod Kukol
[Gtk.Mac] Remove broken Popover window border
2016-03-14[Gtk] Fix SearchEntry renderingVsevolod Kukol
* Set transparent-bg-hint for themes that support it * Fix ShowFrame property setting * Draw entry background using theme engine on Linux
2016-03-14[Gtk] Optimize Popover border drawingVsevolod Kukol
2016-03-11[Gtk.Mac] Fix buildVsevolod Kukol
2016-03-11[Gtk.Mac] Remove broken Popover window borderVsevolod Kukol
2016-03-07Merge pull request #585 from hwthomas/masterVsevolod Kukol
[GtkBackend] Add custom Gtk.MissingIcon for Gtk3
2016-03-07Update WindowFrameBackend.csVsevolod Kukol
If you update Width or Height property instead of Size, it's will be change other side size to minimum value Ex: this.Width = 100; // Height will be 0 now! (cherry picked from commit 3f26a309a44503ce82720a475913d2b9624aa3dc) Signed-off-by: Vsevolod Kukol <sevo@xamarin.com>
2016-03-07[GtkBackend] Add custom Gtk.MissingIcon for Gtk3hwthomas
2016-03-04[Gtk3] Fix buildVsevolod Kukol
We can not draw a custom gtk-missing-image using Gdk.Pixmap, because Gtk3 has no Pixmap support. (fixes #584)
2016-03-04[Wpf] Fix remaining Font validationVsevolod Kukol
2016-03-04Merge pull request #568 from sevoku/optimize-mac-textentryAlan McGovern
[Mac] Optimize mac textentry frame, alignment and selection
2016-03-04Fix cross-toolkit font support in TextLayout BackendsVsevolod Kukol
Backends must always validate Xwt.Drawing.Font objects.
2016-03-04[Gtk] Load SystemFont from Gtk.RcVsevolod Kukol
Gtk.Label.Style does not always match the current Gtk theme, because the label is not realized. To retrieve the style which is applied by Gtk on realization we need to load it using Gtk.Rc.
2016-03-04[Mac] Fix PasswordEntry background colorVsevolod Kukol
2016-03-04[Mac] Fix TextEntry.Multiline getterVsevolod Kukol
2016-03-04[Mac] Set TextEntry Cell background for frameless entries.Vsevolod Kukol
2016-03-04[Mac] Prevent TextEntry Cell from being garbage collectedVsevolod Kukol
reverts change introduced in 493ac40da5ccd1cd4e790c92d5b0247b75d2d8e5
2016-03-04[Mac] Fix TextEntry vertical alignment calculationVsevolod Kukol
CGRect.Inset is not always reliable, hence we should use Xwt.Rectangle for the calculations.
2016-03-04[Mac] Fix TextEntry mouse event handlingVsevolod Kukol
reverts CustomAlignedContainer removal in 493ac40da5ccd1cd4e790c92d5b0247b75d2d8e5
2016-03-04[Mac] Allow to disable WidgetView Background drawingVsevolod Kukol
The WidgetView is is a holding container used by various backends to enable mouse event handling, but not all backends need it to draw the background.
2016-03-03Merge pull request #583 from sevoku/fix-font-backend-switchingAlan McGovern
Fix Font backend switching on Toolkit changes
2016-03-03Fix Font backend switching on Toolkit changesVsevolod Kukol
* always call InitForToolkit when font is being validated * replace the whole font object if it is a system font reference * let the FontBackendHandler do the system font conversions
2016-02-19[Wpf] Improve TooltipText implementation to work better with Gtk classic ↵Jérémie Laval
workflow. This patch does a couple of things: - Fix NRE when querying TooltipText when no tooltip was set - Use a real ToolTip instance in place of just setting a string. - Make sure to hide tooltip when the value is set to null while the tooltip is showing (as is often the case with custom widget based on Canvas that set TooltipText while in a MouseEnter/MouseMove event) This patch still doesn't solve some issue that works under toolkit. Notably, it still doesn't handle the fact that when the mouse is already on the widget and a tooltip is set in a mouse event for instance, the tooltip showing timer is not started until the mouse goes out and back in again. This seems to only appear once until the tooltip instance has been initialized.
2016-02-18Merge pull request #580 from sevoku/optimize-default-font-handlingVsevolod Kukol
Optimize default font handling
2016-02-18Merge pull request #578 from sevoku/mac-dynamic-row-heightVsevolod Kukol
[Mac] Support different row heights in Lists/Trees
2016-02-18Merge pull request #544 from sevoku/optimize-font-parserVsevolod Kukol
Optimize Font.FromName parser
2016-02-18Merge pull request #574 from mono/fixLeakVsevolod Kukol
[Window] Fix leak of whole dialog/window content.
2016-02-17Font backend var should be reused in WithSettingsVsevolod Kukol
2016-02-15[Samples] Show system fonts in FontSelector sampleVsevolod Kukol
2016-02-15[Mac] Use default alternatives for system monospace fontVsevolod Kukol
2016-02-15Font backends can get default desktop font namesVsevolod Kukol