├── .gitignore ├── BuildHelpers.targets ├── CODE-OF-CONDUCT.md ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE.txt ├── Makefile ├── README.markdown ├── Test ├── ButtonTests.cs ├── CanvasTests.cs ├── CheckBoxTests.cs ├── ComboBoxEntryTests.cs ├── ComboBoxTests.cs ├── FrameTests.cs ├── HBoxTests.cs ├── HPanedTests.cs ├── HSeparatorTests.cs ├── ImageViewTests.cs ├── LabelTests.cs ├── ListBoxTests.cs ├── ListViewTests.cs ├── NotebookTests.cs ├── ProgressBarTests.cs ├── ScrollViewTests.cs ├── Setup.cs ├── SpinButtonTests.cs ├── TableTests.cs ├── Test.csproj ├── TextEntryTests.cs ├── VBoxTests.cs ├── VPanedTests.cs ├── VSeparatorTests.cs └── WidgetTests.cs ├── TestApps ├── Gtk3Test │ ├── AssemblyInfo.cs │ ├── Gtk3Test.csproj │ └── Main.cs ├── GtkOnMacTest │ ├── GtkOnMacTest.csproj │ ├── Program.cs │ └── gtk-gui │ │ └── gui.stetic ├── GtkOnWindowsTest │ ├── GtkOnWindowsTest.csproj │ ├── MainWindow.cs │ ├── Program.cs │ └── gtk-gui │ │ └── gui.stetic ├── GtkTest │ ├── AssemblyInfo.cs │ ├── GtkTest.csproj │ └── Main.cs ├── MixedGtkMacTest │ ├── AppWindow.cs │ ├── AssemblyInfo.cs │ ├── Main.cs │ └── MixedGtkMacTest.csproj ├── Samples │ ├── App.cs │ ├── MainWindow.cs │ ├── MonoDevelop.Components.Chart │ │ ├── Axis.cs │ │ ├── AxisDimension.cs │ │ ├── AxisPosition.cs │ │ ├── BasicChart.cs │ │ ├── ChartCursor.cs │ │ ├── DateTimeAxis.cs │ │ ├── IntegerAxis.cs │ │ ├── Serie.cs │ │ └── TickEnumerator.cs │ ├── Samples.csproj │ ├── Samples │ │ ├── Boxes.cs │ │ ├── ButtonSample.cs │ │ ├── CalendarSample.cs │ │ ├── CanvasWithWidget.cs │ │ ├── ChartSample.cs │ │ ├── Checkboxes.cs │ │ ├── ClipboardSample.cs │ │ ├── ColorSelectorSample.cs │ │ ├── Colors.cs │ │ ├── ComboBoxes.cs │ │ ├── DatePickerSample.cs │ │ ├── Designer.cs │ │ ├── DragDrop.cs │ │ ├── DrawingFigures.cs │ │ ├── DrawingPatternsAndImages.cs │ │ ├── DrawingText.cs │ │ ├── DrawingTransforms.cs │ │ ├── ExpanderSample.cs │ │ ├── FileSelectorSample.cs │ │ ├── FolderSelectorSample.cs │ │ ├── FontSelectorSample.cs │ │ ├── Frames.cs │ │ ├── Image9Patch.cs │ │ ├── ImageScaling.cs │ │ ├── Images.cs │ │ ├── Labels.cs │ │ ├── LinkLabels.cs │ │ ├── ListBoxSample.cs │ │ ├── ListView1.cs │ │ ├── ListView2.cs │ │ ├── ListViewCellBounds.cs │ │ ├── ListViewCombos.cs │ │ ├── ListViewEntries.cs │ │ ├── Markdown.cs │ │ ├── MenuSamples.cs │ │ ├── MessageDialogs.cs │ │ ├── Mnemonics.cs │ │ ├── MouseCursors.cs │ │ ├── MultithreadingSample.cs │ │ ├── NotebookSample.cs │ │ ├── OpacitySample.cs │ │ ├── PanedViews.cs │ │ ├── PartialImages.cs │ │ ├── PasswordEntries.cs │ │ ├── PopoverSample.cs │ │ ├── PopupWindows.cs │ │ ├── ProgressBarSample.cs │ │ ├── RadioButtonSample.cs │ │ ├── ScreensSample.cs │ │ ├── ScrollWindowSample.cs │ │ ├── ScrollbarSample.cs │ │ ├── SliderSample.cs │ │ ├── SpinButtonSample.cs │ │ ├── Spinners.cs │ │ ├── Tables.cs │ │ ├── TextEntries.cs │ │ ├── TextInput.cs │ │ ├── ThemedImages.cs │ │ ├── Tooltips.cs │ │ ├── TreeViewCellBounds.cs │ │ ├── TreeViewCustomStore.cs │ │ ├── TreeViewEvents.cs │ │ ├── TreeViews.cs │ │ ├── WebViewSample.cs │ │ ├── WidgetEvents.cs │ │ ├── WidgetFocus.cs │ │ ├── WidgetRendering.cs │ │ ├── Windows.cs │ │ └── cow.jpg │ ├── class.png │ ├── document-generic.png │ ├── document-generic@2x.png │ ├── icons │ │ ├── add-simple-16.png │ │ ├── add-simple-16@2x.png │ │ ├── add-simple-disabled-16.png │ │ ├── add-simple-disabled-16@2x.png │ │ ├── remove-simple-16.png │ │ ├── remove-simple-16@2x.png │ │ ├── remove-simple-disabled-16.png │ │ └── remove-simple-disabled-16@2x.png │ ├── package.png │ ├── zoom-panel-dark.9.png │ └── zoom-panel-dark@2x.9.png ├── WpfTest │ ├── Directory.Build.targets │ ├── Main.cs │ ├── WpfTest.csproj │ └── app.config └── XamMacTest │ ├── Info.plist │ ├── Main.cs │ └── XamMacTest.csproj ├── Testing ├── CoreTests │ ├── ContextSwitchTests.cs │ ├── CoreTests.csproj │ └── FakeToolkit.cs ├── GtkTestRunner.csproj ├── GtkTestRunner │ ├── AssemblyInfo.cs │ ├── GtkInit.cs │ ├── Main.cs │ └── ReferenceImages │ │ ├── Label.AlignCenter.png │ │ ├── Label.AlignCenterWrapped.png │ │ ├── Label.AlignCenterWrappedChangeText.png │ │ ├── Label.AlignLeft.png │ │ ├── Label.AlignLeftWrapped.png │ │ ├── Label.AlignRight.png │ │ ├── Label.AlignRightWrapped.png │ │ ├── LinearGradient.png │ │ ├── LinearGradientDiagonal.png │ │ ├── LinearGradientInternalBox.png │ │ ├── LinearGradientReverse.png │ │ ├── NinePatchStretchStretchWiderHigher.png │ │ ├── NinePatchStretchTileHigher.png │ │ ├── NinePatchStretchTileWiderHigher.png │ │ ├── NinePatchTileStretchWider.png │ │ ├── NinePatchTileStretchWiderHigher.png │ │ ├── RadialGradient.png │ │ ├── RadialGradientReverse.png │ │ └── RadialGradientSmall.png ├── GtkTests │ ├── GtkIntegrationTests.cs │ └── PangoTests.cs ├── Info.plist ├── MacTestRunner.csproj ├── MacTestRunner │ ├── Info.plist │ ├── MacInit.cs │ ├── Main.cs │ └── ReferenceImages │ │ ├── Arc.png │ │ ├── ArcClosePath.png │ │ ├── ArcFill.png │ │ ├── ArcMultipleLoops.png │ │ ├── ArcNegative.png │ │ ├── ArcNegativeClosePath.png │ │ ├── ArcNegativeFill.png │ │ ├── ArcNegativeMultipleLoops.png │ │ ├── ArcNegativePathConnection.png │ │ ├── ArcNegativeStartingNegative.png │ │ ├── ArcNegativeSwappedAngles.png │ │ ├── ArcPathConnection.png │ │ ├── ArcStartingNegative.png │ │ ├── ArcSwappedAngles.png │ │ ├── Curve.png │ │ ├── CurveClosePath.png │ │ ├── CurveFillWithHoles.png │ │ ├── CurvePathConnection.png │ │ ├── DrawPathTwoTimes.png │ │ ├── FontTests.RenderWeight.png │ │ ├── ImagePatternInCircle.png │ │ ├── ImagePatternInTriangle.png │ │ ├── ImagePatternWithRotateTransform.png │ │ ├── ImagePatternWithRotateTransformWithAlpha.png │ │ ├── ImagePatternWithScaleTransform.png │ │ ├── ImagePatternWithScaleTransformWithAlpha.png │ │ ├── Label.AlignCenter.png │ │ ├── Label.AlignCenterWrapped.png │ │ ├── Label.AlignCenterWrappedChangeText.png │ │ ├── Label.AlignLeft.png │ │ ├── Label.AlignLeftWrapped.png │ │ ├── Label.AlignRight.png │ │ ├── Label.AlignRightWrapped.png │ │ ├── LineClosePath.png │ │ ├── LinearGradient.png │ │ ├── LinearGradientDiagonal.png │ │ ├── LinearGradientInternalBox.png │ │ ├── LinearGradientReverse.png │ │ ├── NewPath.png │ │ ├── NinePatchStretchStretchDefaultSize.png │ │ ├── NinePatchStretchStretchDefaultSize2x.png │ │ ├── NinePatchStretchStretchHigher.png │ │ ├── NinePatchStretchStretchHigher2x.png │ │ ├── NinePatchStretchStretchWider.png │ │ ├── NinePatchStretchStretchWider2x.png │ │ ├── NinePatchStretchStretchWiderHigher2x.png │ │ ├── NinePatchStretchTileDefaultSize.png │ │ ├── NinePatchStretchTileDefaultSize2x.png │ │ ├── NinePatchStretchTileHigher.png │ │ ├── NinePatchStretchTileHigher2x.png │ │ ├── NinePatchStretchTileWider.png │ │ ├── NinePatchStretchTileWider2x.png │ │ ├── NinePatchStretchTileWiderHigher.png │ │ ├── NinePatchStretchTileWiderHigher2x.png │ │ ├── NinePatchTileStretchDefaultSize.png │ │ ├── NinePatchTileStretchDefaultSize2x.png │ │ ├── NinePatchTileStretchHigher.png │ │ ├── NinePatchTileStretchHigher2x.png │ │ ├── NinePatchTileStretchWider.png │ │ ├── NinePatchTileStretchWider2x.png │ │ ├── NinePatchTileStretchWiderHigher.png │ │ ├── NinePatchTileStretchWiderHigher2x.png │ │ ├── NinePatchTileTileDefaultSize.png │ │ ├── NinePatchTileTileDefaultSize2x.png │ │ ├── NinePatchTileTileHigher.png │ │ ├── NinePatchTileTileHigher2x.png │ │ ├── NinePatchTileTileWider.png │ │ ├── NinePatchTileTileWider2x.png │ │ ├── NinePatchTileTileWiderHigher.png │ │ ├── NinePatchTileTileWiderHigher2x.png │ │ ├── RadialGradient.png │ │ ├── RadialGradientReverse.png │ │ ├── RadialGradientSmall.png │ │ ├── Rectangle.png │ │ ├── RectanglePathConnection.png │ │ ├── StrokePreserve.png │ │ ├── Text.png │ │ ├── TextAlignmentCenter.png │ │ ├── TextAlignmentEnd.png │ │ ├── TextLineBreak.png │ │ ├── TextSize.png │ │ ├── TextTrimmingEllipsis.png │ │ ├── TextWithBlankLines.png │ │ └── TextWordWrap.png ├── Tests │ ├── BoxTests.cs │ ├── ButtonTests.cs │ ├── CanvasTests.cs │ ├── CheckBoxTests.cs │ ├── ColorTests.cs │ ├── ComboBoxEntryTests.cs │ ├── ComboBoxTests.cs │ ├── ConsoleTestRunner.cs │ ├── ContainerTests.cs │ ├── DatePickerTests.cs │ ├── DialogTests.cs │ ├── DrawingTests.cs │ ├── DrawingTestsBase.cs │ ├── ExpanderTests.cs │ ├── FontTests.cs │ ├── FormattedTextTests.cs │ ├── FrameTests.cs │ ├── HBoxTests.cs │ ├── HPanedTests.cs │ ├── HSeparatorTests.cs │ ├── ImageViewTests.cs │ ├── InternalChildrenTests.cs │ ├── LabelTests.cs │ ├── LinkLabelTests.cs │ ├── ListBoxTests.cs │ ├── ListViewTests.cs │ ├── MatrixTests.cs │ ├── NinePatchTests.cs │ ├── NotebookTests.cs │ ├── PanedTests.cs │ ├── ProgressBarTests.cs │ ├── RadioButtonTests.cs │ ├── ReferenceImageManager.cs │ ├── ReferenceImageVerifierDialog.cs │ ├── ReferenceImages │ │ ├── Arc.png │ │ ├── ArcClosePath.png │ │ ├── ArcFill.png │ │ ├── ArcMultipleLoops.png │ │ ├── ArcNegative.png │ │ ├── ArcNegativeClosePath.png │ │ ├── ArcNegativeFill.png │ │ ├── ArcNegativeMultipleLoops.png │ │ ├── ArcNegativePathConnection.png │ │ ├── ArcNegativeStartingNegative.png │ │ ├── ArcNegativeSwappedAngles.png │ │ ├── ArcPathConnection.png │ │ ├── ArcStartingNegative.png │ │ ├── ArcSwappedAngles.png │ │ ├── Clip.png │ │ ├── ClipAccumulated.png │ │ ├── ClipPreserve.png │ │ ├── ClipSaveRestore.png │ │ ├── Curve.png │ │ ├── CurveClosePath.png │ │ ├── CurveFillWithHoles.png │ │ ├── CurvePathConnection.png │ │ ├── DrawPathTwoTimes.png │ │ ├── FillPreserve.png │ │ ├── FontTests.RenderWeight.png │ │ ├── ImagePattern.png │ │ ├── ImagePatternInCircle.png │ │ ├── ImagePatternInTriangle.png │ │ ├── ImagePatternWithAlpha.png │ │ ├── ImagePatternWithRotateTransform.png │ │ ├── ImagePatternWithRotateTransformWithAlpha.png │ │ ├── ImagePatternWithScaleTransform.png │ │ ├── ImagePatternWithScaleTransformWithAlpha.png │ │ ├── ImagePatternWithTranslateTransform.png │ │ ├── ImagePatternWithTranslateTransformWithAlpha.png │ │ ├── Label.AlignCenter.png │ │ ├── Label.AlignCenterWrapped.png │ │ ├── Label.AlignCenterWrappedChangeText.png │ │ ├── Label.AlignLeft.png │ │ ├── Label.AlignLeftWrapped.png │ │ ├── Label.AlignRight.png │ │ ├── Label.AlignRightWrapped.png │ │ ├── Line.png │ │ ├── LineClosePath.png │ │ ├── LineWidth.png │ │ ├── LinearGradient.png │ │ ├── LinearGradientDiagonal.png │ │ ├── LinearGradientInternalBox.png │ │ ├── LinearGradientReverse.png │ │ ├── NewPath.png │ │ ├── NinePatchStretchStretchDefaultSize.png │ │ ├── NinePatchStretchStretchDefaultSize2x.png │ │ ├── NinePatchStretchStretchHigher.png │ │ ├── NinePatchStretchStretchHigher2x.png │ │ ├── NinePatchStretchStretchWider.png │ │ ├── NinePatchStretchStretchWider2x.png │ │ ├── NinePatchStretchStretchWiderHigher.png │ │ ├── NinePatchStretchStretchWiderHigher2x.png │ │ ├── NinePatchStretchTileDefaultSize.png │ │ ├── NinePatchStretchTileDefaultSize2x.png │ │ ├── NinePatchStretchTileHigher.png │ │ ├── NinePatchStretchTileHigher2x.png │ │ ├── NinePatchStretchTileWider.png │ │ ├── NinePatchStretchTileWider2x.png │ │ ├── NinePatchStretchTileWiderHigher.png │ │ ├── NinePatchStretchTileWiderHigher2x.png │ │ ├── NinePatchTileStretchDefaultSize.png │ │ ├── NinePatchTileStretchDefaultSize2x.png │ │ ├── NinePatchTileStretchHigher.png │ │ ├── NinePatchTileStretchHigher2x.png │ │ ├── NinePatchTileStretchWider.png │ │ ├── NinePatchTileStretchWider2x.png │ │ ├── NinePatchTileStretchWiderHigher.png │ │ ├── NinePatchTileStretchWiderHigher2x.png │ │ ├── NinePatchTileTileDefaultSize.png │ │ ├── NinePatchTileTileDefaultSize2x.png │ │ ├── NinePatchTileTileHigher.png │ │ ├── NinePatchTileTileHigher2x.png │ │ ├── NinePatchTileTileWider.png │ │ ├── NinePatchTileTileWider2x.png │ │ ├── NinePatchTileTileWiderHigher.png │ │ ├── NinePatchTileTileWiderHigher2x.png │ │ ├── RadialGradient.png │ │ ├── RadialGradientReverse.png │ │ ├── RadialGradientSmall.png │ │ ├── Rectangle.png │ │ ├── RectangleFill.png │ │ ├── RectanglePathConnection.png │ │ ├── SaveRestoreColor.png │ │ ├── SaveRestoreImagePattern.png │ │ ├── SaveRestoreLineWidth.png │ │ ├── SaveRestoreLinearGradient.png │ │ ├── SaveRestorePath.png │ │ ├── SaveRestoreRadialGradient.png │ │ ├── SaveRestoreTransform.png │ │ ├── StrokePreserve.png │ │ ├── Text.png │ │ ├── TextAlignmentCenter.png │ │ ├── TextAlignmentEnd.png │ │ ├── TextLineBreak.png │ │ ├── TextSize.png │ │ ├── TextTrimmingEllipsis.png │ │ ├── TextWithBlankLines.png │ │ ├── TextWordWrap.png │ │ └── pattern-sample.png │ ├── ScrollViewTests.cs │ ├── ScrollableWidgetTests.cs │ ├── ScrollbarTests.cs │ ├── SegmentedButtonTests.cs │ ├── SliderTests.cs │ ├── SpinButtonTests.cs │ ├── SpinnerTests.cs │ ├── TableTests.cs │ ├── Test.csproj │ ├── Tests.csproj │ ├── TextEntryTests.cs │ ├── ToggleButtonTests.cs │ ├── TransformTests.cs │ ├── TreeViewTests.cs │ ├── VBoxTests.cs │ ├── VPanedTests.cs │ ├── VScrollbar.cs │ ├── VSeparatorTests.cs │ ├── WidgetTests.cs │ ├── WindowTests.cs │ ├── XwtTest.cs │ ├── ninep-ss.9.png │ ├── ninep-ss@2x.9.png │ ├── ninep-st.9.png │ ├── ninep-st@2x.9.png │ ├── ninep-ts.9.png │ ├── ninep-ts@2x.9.png │ ├── ninep-tt.9.png │ └── ninep-tt@2x.9.png ├── WpfTestRunner.csproj ├── WpfTestRunner │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReferenceImages │ │ ├── Arc.png │ │ ├── ArcClosePath.png │ │ ├── ArcFill.png │ │ ├── ArcMultipleLoops.png │ │ ├── ArcNegative.png │ │ ├── ArcNegativeClosePath.png │ │ ├── ArcNegativeFill.png │ │ ├── ArcNegativeMultipleLoops.png │ │ ├── ArcNegativePathConnection.png │ │ ├── ArcNegativeStartingNegative.png │ │ ├── ArcNegativeSwappedAngles.png │ │ ├── ArcPathConnection.png │ │ ├── ArcStartingNegative.png │ │ ├── ArcSwappedAngles.png │ │ ├── Curve.png │ │ ├── CurveClosePath.png │ │ ├── CurveFillWithHoles.png │ │ ├── CurvePathConnection.png │ │ ├── ImagePatternInCircle.png │ │ ├── ImagePatternInTriangle.png │ │ ├── ImagePatternWithScaleTransform.png │ │ ├── LineClosePath.png │ │ ├── LinearGradient.png │ │ ├── LinearGradientDiagonal.png │ │ ├── LinearGradientInternalBox.png │ │ ├── LinearGradientReverse.png │ │ ├── NewPath.png │ │ ├── NinePatchStretchStretchDefaultSize.png │ │ ├── NinePatchStretchStretchDefaultSize2x.png │ │ ├── NinePatchStretchStretchHigher.png │ │ ├── NinePatchStretchStretchHigher2x.png │ │ ├── NinePatchStretchStretchWider.png │ │ ├── NinePatchStretchStretchWider2x.png │ │ ├── NinePatchStretchStretchWiderHigher.png │ │ ├── NinePatchStretchStretchWiderHigher2x.png │ │ ├── NinePatchStretchTileDefaultSize.png │ │ ├── NinePatchStretchTileDefaultSize2x.png │ │ ├── NinePatchStretchTileHigher.png │ │ ├── NinePatchStretchTileHigher2x.png │ │ ├── NinePatchStretchTileWider.png │ │ ├── NinePatchStretchTileWider2x.png │ │ ├── NinePatchStretchTileWiderHigher.png │ │ ├── NinePatchStretchTileWiderHigher2x.png │ │ ├── NinePatchTileStretchDefaultSize.png │ │ ├── NinePatchTileStretchDefaultSize2x.png │ │ ├── NinePatchTileStretchHigher.png │ │ ├── NinePatchTileStretchHigher2x.png │ │ ├── NinePatchTileStretchWider.png │ │ ├── NinePatchTileStretchWider2x.png │ │ ├── NinePatchTileStretchWiderHigher.png │ │ ├── NinePatchTileStretchWiderHigher2x.png │ │ ├── NinePatchTileTileDefaultSize.png │ │ ├── NinePatchTileTileDefaultSize2x.png │ │ ├── NinePatchTileTileHigher.png │ │ ├── NinePatchTileTileHigher2x.png │ │ ├── NinePatchTileTileWider.png │ │ ├── NinePatchTileTileWider2x.png │ │ ├── NinePatchTileTileWiderHigher.png │ │ ├── NinePatchTileTileWiderHigher2x.png │ │ ├── RectanglePathConnection.png │ │ ├── SaveRestorePath.png │ │ ├── Text.png │ │ ├── TextLineBreak.png │ │ ├── TextSize.png │ │ └── TextWordWrap.png │ └── WpfInit.cs └── packages.config ├── Xwt.Gtk.Mac ├── Carbon.cs ├── GtkMacAccessibleBackend.AccessibilityHelper.cs ├── GtkMacAccessibleBackend.cs ├── GtkMacDesktopBackend.cs ├── GtkMacFontBackendHandler.cs ├── GtkMacPopoverBackend.cs ├── GtkQuartz.cs ├── MacPlatformBackend.cs ├── Properties │ └── AssemblyInfo.cs ├── WebViewBackend.cs ├── Xwt.Gtk.Mac.csproj └── Xwt.Gtk.Mac.nuspec ├── Xwt.Gtk.Windows ├── GtkWin32Interop.cs ├── GtkWindowsDesktopBackend.cs ├── Properties │ └── AssemblyInfo.cs ├── WebViewBackend.cs ├── Win32.cs ├── WindowsPlatformBackend.cs ├── Xwt.Gtk.Windows.csproj └── Xwt.Gtk.Windows.nuspec ├── Xwt.Gtk ├── AssemblyInfo.Gtk3.cs ├── AssemblyInfo.cs ├── Xwt.CairoBackend │ ├── CairoContextBackendHandler.cs │ ├── CairoConversion.cs │ └── CairoGradientBackendHandler.cs ├── Xwt.Gtk.csproj ├── Xwt.Gtk.dll.config ├── Xwt.Gtk.nuget.props ├── Xwt.Gtk.nuspec ├── Xwt.Gtk3.csproj ├── Xwt.Gtk3.dll.config ├── Xwt.Gtk3.nuget.props ├── Xwt.Gtk3.nuspec ├── Xwt.GtkBackend.CellViews │ ├── CellUtil.cs │ ├── CellViewBackend.cs │ ├── CustomCellRenderer.cs │ ├── CustomCellRendererComboBox.cs │ ├── CustomCellRendererImage.cs │ ├── CustomCellRendererText.cs │ ├── CustomCellRendererToggle.cs │ ├── Gtk2CellRendererCustom.cs │ └── Gtk3CellRendererCustom.cs ├── Xwt.GtkBackend │ ├── AccessibleBackend.cs │ ├── AlertDialogBackend.cs │ ├── BoxBackend.cs │ ├── BoxBackendGtk2.cs │ ├── BoxBackendGtk3.cs │ ├── ButtonBackend.cs │ ├── ButtonBackendGtk2.cs │ ├── ButtonBackendGtk3.cs │ ├── CalendarBackend.cs │ ├── CanvasBackend.cs │ ├── CanvasBackendGtk2.cs │ ├── CanvasBackendGtk3.cs │ ├── CheckBoxBackend.cs │ ├── CheckBoxMenuItemBackend.cs │ ├── ClipboardBackend.cs │ ├── ColorPickerBackend.cs │ ├── ColorSelectorBackend.cs │ ├── ComboBoxBackend.cs │ ├── ComboBoxEntryBackend.cs │ ├── Conversion.cs │ ├── CustomListModel.cs │ ├── CustomTreeModel.cs │ ├── CustomWidgetBackend.cs │ ├── DatePickerBackend.cs │ ├── DesignerSurfaceBackend.cs │ ├── DialogBackend.cs │ ├── EmbeddedWidgetBackend.cs │ ├── ExpanderBackend.cs │ ├── FileDialogBackend.cs │ ├── FontBackendHandler.cs │ ├── FontSelectorBackend.cs │ ├── FrameBackend.cs │ ├── Gtk2DrawingArea.cs │ ├── Gtk2Extensions.cs │ ├── Gtk2PopoverWindow.cs │ ├── Gtk2ViewPort.cs │ ├── Gtk3DrawingArea.cs │ ├── Gtk3Extensions.cs │ ├── Gtk3FontChooserDialog.cs │ ├── Gtk3PopoverWindow.cs │ ├── Gtk3ViewPort.cs │ ├── GtkAlertDialog.cs │ ├── GtkDesktopBackend.cs │ ├── GtkEngine.cs │ ├── GtkInterop.cs │ ├── GtkKeyboardHandler.cs │ ├── GtkMacInterop.cs │ ├── GtkPlatformBackend.cs │ ├── GtkWebKitMini.cs │ ├── GtkWorkarounds.cs │ ├── HeaderBox.cs │ ├── HeaderBoxGtk2.cs │ ├── HeaderBoxGtk3.cs │ ├── ImageBuilderBackend.cs │ ├── ImageHandler.cs │ ├── ImagePatternBackendHandler.cs │ ├── ImageViewBackend.cs │ ├── LabelBackend.cs │ ├── LabelBackendGtk2.cs │ ├── LabelBackendGtk3.cs │ ├── LinkLabelBackend.cs │ ├── ListBoxBackend.cs │ ├── ListStoreBackend.cs │ ├── ListViewBackend.cs │ ├── MenuBackend.cs │ ├── MenuButtonBackend.cs │ ├── MenuItemBackend.cs │ ├── MessageService.cs │ ├── NotebookBackend.cs │ ├── PanedBackend.cs │ ├── PanedBackendGtk3.cs │ ├── PasswordEntryBackend.cs │ ├── PasswordEntryBackendGtk2.cs │ ├── PasswordEntryBackendGtk3.cs │ ├── Platform.cs │ ├── PopoverBackend.cs │ ├── PopupWindowBackend.cs │ ├── ProgressBarBackend.cs │ ├── RadioButtonBackend.cs │ ├── RadioButtonMenuItemBackend.cs │ ├── RichTextViewBackend.cs │ ├── ScrollAdjustmentBackend.cs │ ├── ScrollControlBackend.cs │ ├── ScrollViewBackend.cs │ ├── ScrollbarBackend.cs │ ├── SearchTextEntryBackend.cs │ ├── SearchTextEntryBackendGtk3.cs │ ├── SegmentedButtonBackend.cs │ ├── SelectColorDialogBackend.cs │ ├── SelectFontDialogBackend.cs │ ├── SeparatorBackend.cs │ ├── SeparatorMenuItemBackend.cs │ ├── SliderBackend.cs │ ├── SpinButtonBackend.cs │ ├── SpinButtonBackendGtk2.cs │ ├── SpinButtonBackendGtk3.cs │ ├── SpinnerBackend.cs │ ├── StatusIconBackend.cs │ ├── TableStoreBackend.cs │ ├── TableViewBackend.cs │ ├── TextEntryBackend.cs │ ├── TextEntryBackendGtk2.cs │ ├── TextEntryBackendGtk3.cs │ ├── TextLayoutBackendHandler.cs │ ├── ToggleButtonBackend.cs │ ├── TreeStoreBackend.cs │ ├── TreeViewBackend.cs │ ├── Util.cs │ ├── UtilityWindowBackend.cs │ ├── WebViewBackend.cs │ ├── WidgetBackend.cs │ ├── WidgetBackendGtk2.cs │ ├── WidgetBackendGtk3.cs │ ├── WindowBackend.cs │ └── WindowFrameBackend.cs └── icons │ ├── searchbox-clear-16.png │ ├── searchbox-clear-16@2x.png │ ├── searchbox-clear-16~dark.png │ ├── searchbox-clear-16~dark@2x.png │ ├── searchbox-search-16.png │ ├── searchbox-search-16@2x.png │ ├── searchbox-search-16~dark.png │ └── searchbox-search-16~dark@2x.png ├── Xwt.WPF ├── AssemblyInfo.cs ├── Xwt.WPF.csproj ├── Xwt.WPFBackend.CellViews │ ├── CanvasCellViewBackend.cs │ ├── CanvasCellViewPanel.cs │ ├── CellViewBackend.cs │ ├── CheckBoxCellViewBackend.cs │ ├── RadioButtonCellViewBackend.cs │ └── TextCellViewBackend.cs ├── Xwt.WPFBackend.Interop │ ├── IDocHostUIHandler.cs │ ├── NativeMethods.cs │ └── NativeStockIcon.cs ├── Xwt.WPFBackend.Utilities │ ├── CellUtil.cs │ ├── ImageToImageSourceConverter.cs │ ├── MarkupToPlainTextConverter.cs │ ├── MultiColumnTreeViewItem.cs │ └── TypeToStringConverter.cs ├── Xwt.WPFBackend │ ├── AccessibleBackend.AccessibilityHelper.cs │ ├── AccessibleBackend.cs │ ├── AlertDialogBackend.cs │ ├── Backend.cs │ ├── BooleanToValueConverter.cs │ ├── BoxBackend.cs │ ├── ButtonBackend.cs │ ├── CalendarBackend.cs │ ├── CanvasBackend.cs │ ├── CheckBoxBackend.cs │ ├── CheckboxMenuItemBackend.cs │ ├── ClipboardBackend.cs │ ├── ComboBoxBackend.cs │ ├── ComboBoxEntryBackend.cs │ ├── ComboBoxTextEntryBackend.cs │ ├── ContextBackendHandler.cs │ ├── CustomScrollViewPort.cs │ ├── CustomWidgetBackend.cs │ ├── DataConverter.cs │ ├── DatePickerBackend.cs │ ├── DelegatedCommand.cs │ ├── DialogBackend.cs │ ├── DrawingContext.cs │ ├── DropDownButton.cs │ ├── EmbedNativeWidgetBackend.cs │ ├── ExComboBox.cs │ ├── ExGrid.cs │ ├── ExListBox.cs │ ├── ExListBoxItem.cs │ ├── ExListView.cs │ ├── ExListViewItem.cs │ ├── ExRichTextBox.cs │ ├── ExScrollViewer.cs │ ├── ExTextBox.cs │ ├── ExTreeView.cs │ ├── ExTreeViewItem.cs │ ├── ExpanderBackend.cs │ ├── FileDialogBackend.cs │ ├── FontBackendHandler.cs │ ├── FrameBackend.cs │ ├── GradientBackendHandler.cs │ ├── ImageAdorner.cs │ ├── ImageBuilderBackendHandler.cs │ ├── ImageHandler.cs │ ├── ImagePatternBackendHandler.cs │ ├── ImageViewBackend.cs │ ├── KeyboardUtil.cs │ ├── LabelBackend.cs │ ├── LevelToIndentConverter.cs │ ├── LinkLabelBackend.cs │ ├── ListBoxBackend.cs │ ├── ListDataSource.cs │ ├── ListSourceNotifyWrapper.cs │ ├── ListViewBackend.cs │ ├── MenuBackend.cs │ ├── MenuButtonBackend.cs │ ├── MenuItemBackend.cs │ ├── NotebookBackend.cs │ ├── OpenFileDialogBackend.cs │ ├── PanedBackend.cs │ ├── PasswordEntryBackend.cs │ ├── PlaceholderTextAdorner.cs │ ├── PopoverBackend.cs │ ├── ProgressBarBackend.cs │ ├── RadioButtonBackend.cs │ ├── RadioButtonMenuItemBackend.cs │ ├── ResPool.cs │ ├── RichTextViewBackend.cs │ ├── SaveFileDialogBackend.cs │ ├── ScrollAdjustmentBackend.cs │ ├── ScrollControlBackend.cs │ ├── ScrollView.xaml │ ├── ScrollViewBackend.cs │ ├── ScrollbarBackend.cs │ ├── SelectColorDialogBackend.cs │ ├── SelectFolderDialogBackend.cs │ ├── SeparatorBackend.cs │ ├── SeparatorMenuItemBackend.cs │ ├── SliderBackend.cs │ ├── SpinButtonBackend.cs │ ├── SpinnerBackend.cs │ ├── TextEntryBackend.cs │ ├── TextLayoutBackendHandler.cs │ ├── Timeout.cs │ ├── ToggleButtonBackend.cs │ ├── TreeStoreBackend.cs │ ├── TreeStoreNode.cs │ ├── TreeView.xaml │ ├── TreeViewBackend.cs │ ├── TreeViewDropAdorner.cs │ ├── Util.cs │ ├── ValuesContainer.cs │ ├── WPFEngine.cs │ ├── WebViewBackend.cs │ ├── WidgetBackend.cs │ ├── WindowBackend.cs │ ├── WindowFrameBackend.cs │ ├── WindowsSpinButton.xaml.cs │ ├── WpfDesktopBackend.cs │ └── WpfKeyboardHandler.cs └── icons │ ├── add-16.png │ ├── add-16~dark.png │ ├── add-16~dark~disabled.png │ ├── add-16~disabled.png │ ├── remove-16.png │ ├── remove-16~dark.png │ ├── remove-16~dark~disabled.png │ └── remove-16~disabled.png ├── Xwt.XamMac ├── Xwt.Mac.CellViews │ ├── CanvasTableCell.cs │ ├── CellUtil.cs │ ├── CellViewBackend.cs │ ├── CheckBoxTableCell.cs │ ├── CompositeCell.cs │ ├── ICellRenderer.cs │ ├── ICellSource.cs │ ├── ImageTableCell.cs │ ├── RadioButtonTableCell.cs │ └── TextTableCell.cs ├── Xwt.Mac │ ├── AccerssibilityHelper.cs │ ├── AccessibleBackend.AccessibilityHelper.cs │ ├── AccessibleBackend.cs │ ├── AlertDialogBackend.cs │ ├── BoxBackend.cs │ ├── ButtonBackend.cs │ ├── CalendarBackend.cs │ ├── CanvasBackend.cs │ ├── CheckBoxBackend.cs │ ├── CheckBoxMenuItemBackend.cs │ ├── ColorPickerBackend.cs │ ├── ComboBoxBackend.cs │ ├── ComboBoxEntryBackend.cs │ ├── ContextBackendHandler.cs │ ├── CustomWidgetBackend.cs │ ├── DatePickerBackend.cs │ ├── DialogBackend.cs │ ├── EmbedNativeWidgetBackend.cs │ ├── ExpanderBackend.cs │ ├── FileDialogBackend.cs │ ├── FontBackendHandler.cs │ ├── FrameBackend.cs │ ├── GradientBackendHandler.cs │ ├── GtkQuartz.cs │ ├── IViewObject.cs │ ├── ImageBuilderBackendHandler.cs │ ├── ImageHandler.cs │ ├── ImagePatternBackendHandler.cs │ ├── ImageViewBackend.cs │ ├── KeyboardUtil.cs │ ├── LabelBackend.cs │ ├── LinkLabelBackend.cs │ ├── ListBoxBackend.cs │ ├── ListViewBackend.cs │ ├── MacClipboardBackend.cs │ ├── MacDesktopBackend.cs │ ├── MacEngine.cs │ ├── MacKeyboardHandler.cs │ ├── MacSystemInformation.cs │ ├── MenuBackend.cs │ ├── MenuButtonBackend.cs │ ├── MenuItemBackend.cs │ ├── Messaging.cs │ ├── NSApplicationInitializer.cs │ ├── NSTableViewBackend.cs │ ├── NotebookBackend.cs │ ├── ObjcHelper.cs │ ├── OpenFileDialogBackend.cs │ ├── OutlineViewBackend.cs │ ├── PanedBackend.cs │ ├── PasswordEntryBackend.cs │ ├── PathBackendHandler.cs │ ├── PopoverBackend.cs │ ├── PopupWindowBackend.cs │ ├── ProgressBarBackend.cs │ ├── RadioButtonBackend.cs │ ├── RadioButtonMenuItemBackend.cs │ ├── RichTextViewBackend.cs │ ├── SaveFileDialogBackend.cs │ ├── ScrollAdjustmentBackend.cs │ ├── ScrollControlBackend.cs │ ├── ScrollViewBackend.cs │ ├── ScrollbarBackend.cs │ ├── SearchTextEntryBackend.cs │ ├── SelectFolderDialogBackend.cs │ ├── SelectFontDialogBackend.cs │ ├── SeparatorBackend.cs │ ├── SeparatorMenuItemBackend.cs │ ├── SliderBackend.cs │ ├── SpinButtonBackend.cs │ ├── SpinnerBackend.cs │ ├── StatusIconBackend.cs │ ├── TableViewBackend.cs │ ├── TextEntryBackend.cs │ ├── TextLayoutBackendHandler.cs │ ├── ToggleButtonBackend.cs │ ├── TreeViewBackend.cs │ ├── Util.cs │ ├── ViewBackend.cs │ ├── WebViewBackend.cs │ ├── WidgetView.cs │ ├── WindowBackend.cs │ └── WindowFrameBackend.cs ├── Xwt.XamMac.csproj ├── Xwt.XamMac.nuspec └── icons │ ├── zoom-in-16.png │ ├── zoom-in-16@2x.png │ ├── zoom-in-16~dark.png │ ├── zoom-in-16~dark@2x.png │ ├── zoom-in-16~dark~sel.png │ ├── zoom-in-16~dark~sel@2x.png │ ├── zoom-in-16~sel.png │ ├── zoom-in-16~sel@2x.png │ ├── zoom-out-16.png │ ├── zoom-out-16@2x.png │ ├── zoom-out-16~dark.png │ ├── zoom-out-16~dark@2x.png │ ├── zoom-out-16~dark~sel.png │ ├── zoom-out-16~dark~sel@2x.png │ ├── zoom-out-16~sel.png │ └── zoom-out-16~sel@2x.png ├── Xwt.sln ├── Xwt ├── AssemblyInfo.cs ├── Xwt.Accessibility │ ├── Accessible.cs │ ├── AccessibleFields.cs │ ├── IAccessibleBackend.cs │ ├── Role.cs │ └── XwtAccessibleBackend.cs ├── Xwt.Backends │ ├── ApplicationContext.cs │ ├── BackendHandler.cs │ ├── BackendHost.cs │ ├── BackendTypeAttribute.cs │ ├── ClipboardBackend.cs │ ├── ContextBackendHandler.cs │ ├── DefaultNaturalSizes.cs │ ├── DesktopBackend.cs │ ├── DisposableResourceBackendHandler.cs │ ├── DrawingPathBackendHandler.cs │ ├── EventHost.cs │ ├── ExtensionMethods.cs │ ├── FontBackendHandler.cs │ ├── GradientBackendHandler.cs │ ├── IAlertDialogBackend.cs │ ├── IBackend.cs │ ├── IBoxBackend.cs │ ├── IButtonBackend.cs │ ├── ICalendarBackend.cs │ ├── ICanvasBackend.cs │ ├── ICanvasCellViewBackend.cs │ ├── ICanvasCellViewFrontend.cs │ ├── ICellViewBackend.cs │ ├── ICellViewFrontend.cs │ ├── ICheckBoxBackend.cs │ ├── ICheckBoxCellViewFrontend.cs │ ├── ICheckBoxMenuItemBackend.cs │ ├── IChildPlacementHandler.cs │ ├── ICollectionListener.cs │ ├── IColorPickerBackend.cs │ ├── IColorSelectorBackend.cs │ ├── IColumnContainerBackend.cs │ ├── IComboBoxBackend.cs │ ├── IComboBoxCellViewFrontend.cs │ ├── IComboBoxEntryBackend.cs │ ├── ICustomWidgetBackend.cs │ ├── IDatePickerBackend.cs │ ├── IDesignerSurfaceBackend.cs │ ├── IDialogBackend.cs │ ├── IDispatcherBackend.cs │ ├── IEmbeddedWidgetBackend.cs │ ├── IExpandBackend.cs │ ├── IFileDialogBackend.cs │ ├── IFileSelectorBackend.cs │ ├── IFolderSelectorBackend.cs │ ├── IFontSelectorBackend.cs │ ├── IFrameBackend.cs │ ├── IFrontend.cs │ ├── IImageCellViewFrontend.cs │ ├── IImageViewBackend.cs │ ├── ILabelBackend.cs │ ├── ILinkLabelBackend.cs │ ├── IListBoxBackend.cs │ ├── IListStoreBackend.cs │ ├── IListViewBackend.cs │ ├── IMenuBackend.cs │ ├── IMenuButtonBackend.cs │ ├── IMenuItemBackend.cs │ ├── INotebookBackend.cs │ ├── IOpenFileDialogBackend.cs │ ├── IPanedBackend.cs │ ├── IPasswordEntryBackend.cs │ ├── IPopoverBackend.cs │ ├── IPopupWindowBackend.cs │ ├── IProgressBarBackend.cs │ ├── IRadioButtonBackend.cs │ ├── IRadioButtonCellViewFrontend.cs │ ├── IRadioButtonMenuItemBackend.cs │ ├── IRichTextViewBackend.cs │ ├── ISaveFileDialogBackend.cs │ ├── IScrollAdjustmentBackend.cs │ ├── IScrollControlBackend.cs │ ├── IScrollViewBackend.cs │ ├── IScrollableWidgetBackend.cs │ ├── IScrollbarBackend.cs │ ├── ISearchTextEntryBackend.cs │ ├── ISegmentedButtonBackend.cs │ ├── ISelectColorDialogBackend.cs │ ├── ISelectFolderDialogBackend.cs │ ├── ISelectFontDialogBackend.cs │ ├── ISeparatorBackend.cs │ ├── ISeparatorMenuItemBackend.cs │ ├── ISliderBackend.cs │ ├── ISpinButtonBackend.cs │ ├── ISpinnerBackend.cs │ ├── IStatusIconBackend.cs │ ├── ITableViewBackend.cs │ ├── ITextCellViewFrontend.cs │ ├── ITextEntryBackend.cs │ ├── IToggleButtonBackend.cs │ ├── IToggleCellViewFrontend.cs │ ├── ITreeStoreBackend.cs │ ├── ITreeViewBackend.cs │ ├── IUtilityWindowBackend.cs │ ├── IWebViewBackend.cs │ ├── IWidgetBackend.cs │ ├── IWindowBackend.cs │ ├── IWindowFrameBackend.cs │ ├── ImageBackendHandler.cs │ ├── ImageBuilderBackendHandler.cs │ ├── ImagePatternBackendHandler.cs │ ├── KeyboardHandler.cs │ ├── ResourceManager.cs │ ├── StockIconId.cs │ ├── TextLayoutBackendHandler.cs │ ├── ToolkitEngineBackend.cs │ ├── TransferDataStore.cs │ └── XwtWidgetBackend.cs ├── Xwt.Design │ └── DesignerSurface.cs ├── Xwt.Drawing │ ├── BackgroundTextAttribute.cs │ ├── BitmapImage.cs │ ├── Color.cs │ ├── ColorTextAttribute.cs │ ├── Colors.cs │ ├── ComposedImage.cs │ ├── Context.cs │ ├── DrawingImage.cs │ ├── DrawingPath.cs │ ├── Font.cs │ ├── FontSizeTextAttribute.cs │ ├── FontStyleTextAttribute.cs │ ├── FontTextAttribute.cs │ ├── FontWeightTextAttribute.cs │ ├── Gradient.cs │ ├── HslColor.cs │ ├── IImageLoader.cs │ ├── Image.cs │ ├── ImageBuilder.cs │ ├── ImageFileType.cs │ ├── ImageFormat.cs │ ├── ImagePattern.cs │ ├── LinearGradient.cs │ ├── LinkTextAttribute.cs │ ├── Matrix.cs │ ├── NinePatchImage.cs │ ├── Pattern.cs │ ├── RadialGradient.cs │ ├── StrikethroughTextAttribute.cs │ ├── StyleSet.cs │ ├── TextAttribute.cs │ ├── TextLayout.cs │ ├── ThemedImage.cs │ ├── UnderlineTextAttribute.cs │ └── VectorImage.cs ├── Xwt.Formats │ ├── MarkdownTextFormat.cs │ ├── MarkupTextFormat.cs │ ├── PlainTextFormat.cs │ └── TextFormat.cs ├── Xwt.Motion │ ├── Animation.cs │ ├── AnimationExtensions.cs │ ├── Easing.cs │ ├── IAnimatable.cs │ ├── ObjectTransforms.cs │ └── Tweener.cs ├── Xwt.csproj └── Xwt │ ├── Alignment.cs │ ├── Application.cs │ ├── Box.cs │ ├── Button.cs │ ├── ButtonEventArgs.cs │ ├── ButtonStyle.cs │ ├── Calendar.cs │ ├── Canvas.cs │ ├── CanvasCellView.cs │ ├── CellView.cs │ ├── CellViewCollection.cs │ ├── CheckBox.cs │ ├── CheckBoxCellView.cs │ ├── CheckBoxMenuItem.cs │ ├── CheckBoxState.cs │ ├── ChildrenCollection.cs │ ├── Clipboard.cs │ ├── CloseRequestedEventArgs.cs │ ├── CloseRequestedHandler.cs │ ├── ColorPicker.cs │ ├── ColorSelector.cs │ ├── ComboBox.cs │ ├── ComboBoxCellView.cs │ ├── ComboBoxEntry.cs │ ├── Command.cs │ ├── ContentPosition.cs │ ├── CursorType.cs │ ├── DataField.cs │ ├── DataStore.cs │ ├── DatePicker.cs │ ├── Desktop.cs │ ├── DesktopType.cs │ ├── Dialog.cs │ ├── DialogButtonCollection.cs │ ├── Distance.cs │ ├── DragDropAction.cs │ ├── DragEventArgs.cs │ ├── DragOperation.cs │ ├── EllipsizeMode.cs │ ├── ExceptionEventArgs.cs │ ├── Expander.cs │ ├── FileDialog.cs │ ├── FileDialogFilter.cs │ ├── FileSelector.cs │ ├── FolderSelector.cs │ ├── FontSelector.cs │ ├── FormattedText.cs │ ├── Frame.cs │ ├── FrameBox.cs │ ├── GridLines.cs │ ├── HBox.cs │ ├── HPaned.cs │ ├── HScrollbar.cs │ ├── HSeparator.cs │ ├── HSlider.cs │ ├── IContainerEventSink.cs │ ├── IListDataSource.cs │ ├── IScrollableWidget.cs │ ├── ITranslationCatalog.cs │ ├── ITreeDataSource.cs │ ├── IWidgetSurface.cs │ ├── IconSize.cs │ ├── ImageCellView.cs │ ├── ImageView.cs │ ├── InvalidConstructorInvocation.cs │ ├── ItemCollection.cs │ ├── ItemSeparator.cs │ ├── Key.cs │ ├── KeyEventArgs.cs │ ├── Keyboard.cs │ ├── Label.cs │ ├── LinkLabel.cs │ ├── ListBox.cs │ ├── ListStore.cs │ ├── ListView.cs │ ├── ListViewColumn.cs │ ├── ListViewColumnCollection.cs │ ├── ListViewRowEventArgs.cs │ ├── Menu.cs │ ├── MenuButton.cs │ ├── MenuItem.cs │ ├── MenuItemCollection.cs │ ├── MessageDialog.cs │ ├── ModifierKeys.cs │ ├── MouseMovedEventArgs.cs │ ├── MouseScrolledEventArgs.cs │ ├── Notebook.cs │ ├── ObjectCollection.cs │ ├── OpenFileDialog.cs │ ├── Paned.cs │ ├── PasswordEntry.cs │ ├── Placement.cs │ ├── Point.cs │ ├── PointerButton.cs │ ├── Popover.cs │ ├── PopupWindow.cs │ ├── ProgressBar.cs │ ├── RadioButton.cs │ ├── RadioButtonCellView.cs │ ├── RadioButtonMenuItem.cs │ ├── Rectangle.cs │ ├── RichTextView.cs │ ├── RowDropPosition.cs │ ├── SaveFileDialog.cs │ ├── Screen.cs │ ├── ScrollAdjustment.cs │ ├── ScrollControl.cs │ ├── ScrollView.cs │ ├── Scrollbar.cs │ ├── SearchTextEntry.cs │ ├── SegmentedButton.cs │ ├── SelectColorDialog.cs │ ├── SelectFolderDialog.cs │ ├── SelectFontDialog.cs │ ├── SelectionMode.cs │ ├── Separator.cs │ ├── SeparatorMenuItem.cs │ ├── Size.cs │ ├── SizeConstraint.cs │ ├── Slider.cs │ ├── SpinButton.cs │ ├── Spinner.cs │ ├── StatusIcon.cs │ ├── StockIcons.cs │ ├── Table.cs │ ├── TableCalc.cs │ ├── TextCellView.cs │ ├── TextChangedEventArgs.cs │ ├── TextEntry.cs │ ├── TextInputEventArgs.cs │ ├── ToggleButton.cs │ ├── Toolkit.cs │ ├── ToolkitDefaults.cs │ ├── ToolkitNotInitializedException.cs │ ├── TransferDataSource.cs │ ├── TransferDataType.cs │ ├── TreeNavigator.cs │ ├── TreePosition.cs │ ├── TreeStore.cs │ ├── TreeView.cs │ ├── TreeViewRowEventArgs.cs │ ├── TreeViewStatus.cs │ ├── UtilityWindow.cs │ ├── VBox.cs │ ├── VPaned.cs │ ├── VScrollbar.cs │ ├── VSeparator.cs │ ├── VSlider.cs │ ├── WebView.cs │ ├── Widget.cs │ ├── WidgetAlignment.cs │ ├── WidgetCollection.cs │ ├── WidgetEventArgs.cs │ ├── WidgetSpacing.cs │ ├── Window.cs │ ├── WindowFrame.cs │ ├── WindowLocation.cs │ ├── WrapMode.cs │ ├── XwtComponent.cs │ ├── XwtObject.cs │ ├── XwtSynchronizationContext.cs │ └── XwtTaskScheduler.cs ├── appveyor.yml ├── docs └── en │ ├── Xwt.Backends │ ├── ButtonEvent.xml │ ├── CheckBoxEvent.xml │ ├── ComboBoxEvent.xml │ ├── DragOperationEventSink.xml │ ├── EngineBackend.xml │ ├── IAlertDialogBackend.xml │ ├── IBackendHandler.xml │ ├── IBoxBackend.xml │ ├── IButtonBackend.xml │ ├── IButtonEventSink.xml │ ├── ICanvasBackend.xml │ ├── ICanvasEventSink.xml │ ├── ICheckBoxBackend.xml │ ├── ICheckBoxEventSink.xml │ ├── ICollectionListener.xml │ ├── IColumnContainerBackend.xml │ ├── IComboBoxBackend.xml │ ├── IComboBoxEntryBackend.xml │ ├── IComboBoxEntryEventSink.xml │ ├── IComboBoxEventSink.xml │ ├── IContextBackendHandler.xml │ ├── ICustomWidgetBackend.xml │ ├── IDesignerSurfaceBackend.xml │ ├── IDialogBackend.xml │ ├── IDialogEventSink.xml │ ├── IFontBackendHandler.xml │ ├── IFrameBackend.xml │ ├── IFrameEventSink.xml │ ├── IGradientBackendHandler.xml │ ├── IImageViewBackend.xml │ ├── ILabelBackend.xml │ ├── IListStoreBackend.xml │ ├── IListViewBackend.xml │ ├── IListViewEventSink.xml │ ├── IMenuBackend.xml │ ├── IMenuButtonBackend.xml │ ├── IMenuButtonEventSink.xml │ ├── IMenuItemBackend.xml │ ├── IMenuItemEventSink.xml │ ├── INotebookBackend.xml │ ├── INotebookEventSink.xml │ ├── IPanedBackend.xml │ ├── IScrollViewBackend.xml │ ├── IScrollViewEventSink.xml │ ├── ISeparatorBackend.xml │ ├── ITableViewBackend.xml │ ├── ITableViewEventSink.xml │ ├── ITextEntryBackend.xml │ ├── ITextEntryEventSink.xml │ ├── ITextLayoutBackendHandler.xml │ ├── IToggleButtonBackend.xml │ ├── IToggleButtonEventSink.xml │ ├── ITransferDataSource.xml │ ├── ITreeStoreBackend.xml │ ├── ITreeViewBackend.xml │ ├── ITreeViewEventSink.xml │ ├── IWidgetBackend.xml │ ├── IWidgetEventSink.xml │ ├── IWindowBackend.xml │ ├── IWindowEventSink.xml │ ├── IWindowFrameBackend.xml │ ├── IWindowFrameEventSink.xml │ ├── ImageBackendHandler.xml │ ├── ListViewColumnChange.xml │ ├── MenuItemEvent.xml │ ├── NotebookEvent.xml │ ├── Orientation.xml │ ├── ScrollViewEvent.xml │ ├── TableViewEvent.xml │ ├── TextEntryEvent.xml │ ├── ToggleButtonEvent.xml │ ├── WidgetEvent.xml │ └── WindowFrameEvent.xml │ ├── Xwt.Design │ └── DesignerSurface.xml │ ├── Xwt.Drawing │ ├── Color.xml │ ├── Context.xml │ ├── Font.xml │ ├── FontStretch.xml │ ├── FontStyle.xml │ ├── FontWeight.xml │ ├── Gradient.xml │ ├── Image.xml │ ├── LinearGradient.xml │ ├── Pattern.xml │ └── TextLayout.xml │ ├── Xwt.Engine │ ├── Toolkit.xml │ └── WidgetRegistry.xml │ ├── Xwt │ ├── AlertOption.xml │ ├── Alignment.xml │ ├── Application.xml │ ├── AttachOptions.xml │ ├── BoundsChangedEventArgs.xml │ ├── Box.xml │ ├── BoxMode.xml │ ├── BoxPlacement.xml │ ├── Button.xml │ ├── ButtonEventArgs.xml │ ├── ButtonStyle.xml │ ├── ButtonType.xml │ ├── Canvas.xml │ ├── CellView.xml │ ├── CellViewCollection.xml │ ├── CheckBox.xml │ ├── CheckBoxCellView.xml │ ├── ChildrenCollection`1.xml │ ├── Clipboard.xml │ ├── ComboBox.xml │ ├── ComboBoxCellView.xml │ ├── ComboBoxEntry.xml │ ├── Command.xml │ ├── ConfirmationMessage.xml │ ├── ContentPosition.xml │ ├── DataField.xml │ ├── DataField`1.xml │ ├── DataRequestDelegate.xml │ ├── DataStore.xml │ ├── Dialog.xml │ ├── DialogButton.xml │ ├── DialogButtonCollection.xml │ ├── Distance.xml │ ├── DragCheckEventArgs.xml │ ├── DragDropAction.xml │ ├── DragDropResult.xml │ ├── DragEventArgs.xml │ ├── DragFinishedEventArgs.xml │ ├── DragOperation.xml │ ├── DragOverCheckEventArgs.xml │ ├── DragOverEventArgs.xml │ ├── EventResult.xml │ ├── Frame.xml │ ├── FrameType.xml │ ├── GenericMessage.xml │ ├── HBox.xml │ ├── HPaned.xml │ ├── HScale.xml │ ├── HSeparator.xml │ ├── IBackend.xml │ ├── ICollectionEventSink`1.xml │ ├── IContainerEventSink`1.xml │ ├── IDataField.xml │ ├── IListDataSource.xml │ ├── ISpacingListener.xml │ ├── ITransferData.xml │ ├── ITreeDataSource.xml │ ├── IWidgetSurface.xml │ ├── IconSize.xml │ ├── IconTextCellView.xml │ ├── ImageCellView.xml │ ├── ImageView.xml │ ├── ItemCollection.xml │ ├── ItemSeparator.xml │ ├── Key.xml │ ├── KeyEventArgs.xml │ ├── Label.xml │ ├── ListRowEventArgs.xml │ ├── ListRowOrderEventArgs.xml │ ├── ListStore.xml │ ├── ListView.xml │ ├── ListViewColumn.xml │ ├── ListViewColumnCollection.xml │ ├── Menu.xml │ ├── MenuButton.xml │ ├── MenuItem.xml │ ├── MenuItemCollection.xml │ ├── MenuItemType.xml │ ├── MessageDescription.xml │ ├── MessageDialog.xml │ ├── ModifierKeys.xml │ ├── MouseMovedEventArgs.xml │ ├── NodePosition.xml │ ├── Notebook.xml │ ├── NotebookTab.xml │ ├── PackOrigin.xml │ ├── Paned.xml │ ├── Panel.xml │ ├── Point.xml │ ├── PopupWindow.xml │ ├── QuestionMessage.xml │ ├── Rectangle.xml │ ├── ScrollPolicy.xml │ ├── ScrollView.xml │ ├── SelectionMode.xml │ ├── Separator.xml │ ├── Size.xml │ ├── SizeRequestMode.xml │ ├── StockIcons.xml │ ├── Table.xml │ ├── TablePlacement.xml │ ├── TextCellView.xml │ ├── TextEntry.xml │ ├── ToggleButton.xml │ ├── TransferDataSource.xml │ ├── TransferDataStore.xml │ ├── TransferDataType.xml │ ├── TreeNavigator.xml │ ├── TreeNodeChildEventArgs.xml │ ├── TreeNodeEventArgs.xml │ ├── TreeNodeOrderEventArgs.xml │ ├── TreePosition.xml │ ├── TreeStore.xml │ ├── TreeView.xml │ ├── TreeViewStatus.xml │ ├── VBox.xml │ ├── VPaned.xml │ ├── VSeparator.xml │ ├── Widget.xml │ ├── WidgetCollection.xml │ ├── WidgetSize.xml │ ├── WidgetSpacing.xml │ ├── Window.xml │ ├── WindowFrame.xml │ ├── XwtComponent.xml │ └── XwtObject.xml │ ├── index.xml │ ├── ns-Xwt.Backends.xml │ ├── ns-Xwt.Design.xml │ ├── ns-Xwt.Drawing.xml │ ├── ns-Xwt.Engine.xml │ └── ns-Xwt.xml └── xwt.snk /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/.gitignore -------------------------------------------------------------------------------- /BuildHelpers.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/BuildHelpers.targets -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Makefile -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/README.markdown -------------------------------------------------------------------------------- /Test/ButtonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/ButtonTests.cs -------------------------------------------------------------------------------- /Test/CanvasTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/CanvasTests.cs -------------------------------------------------------------------------------- /Test/CheckBoxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/CheckBoxTests.cs -------------------------------------------------------------------------------- /Test/ComboBoxEntryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/ComboBoxEntryTests.cs -------------------------------------------------------------------------------- /Test/ComboBoxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/ComboBoxTests.cs -------------------------------------------------------------------------------- /Test/FrameTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/FrameTests.cs -------------------------------------------------------------------------------- /Test/HBoxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/HBoxTests.cs -------------------------------------------------------------------------------- /Test/HPanedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/HPanedTests.cs -------------------------------------------------------------------------------- /Test/HSeparatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/HSeparatorTests.cs -------------------------------------------------------------------------------- /Test/ImageViewTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/ImageViewTests.cs -------------------------------------------------------------------------------- /Test/LabelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/LabelTests.cs -------------------------------------------------------------------------------- /Test/ListBoxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/ListBoxTests.cs -------------------------------------------------------------------------------- /Test/ListViewTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/ListViewTests.cs -------------------------------------------------------------------------------- /Test/NotebookTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/NotebookTests.cs -------------------------------------------------------------------------------- /Test/ProgressBarTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/ProgressBarTests.cs -------------------------------------------------------------------------------- /Test/ScrollViewTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/ScrollViewTests.cs -------------------------------------------------------------------------------- /Test/Setup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/Setup.cs -------------------------------------------------------------------------------- /Test/SpinButtonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/SpinButtonTests.cs -------------------------------------------------------------------------------- /Test/TableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/TableTests.cs -------------------------------------------------------------------------------- /Test/Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/Test.csproj -------------------------------------------------------------------------------- /Test/TextEntryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/TextEntryTests.cs -------------------------------------------------------------------------------- /Test/VBoxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/VBoxTests.cs -------------------------------------------------------------------------------- /Test/VPanedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/VPanedTests.cs -------------------------------------------------------------------------------- /Test/VSeparatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/VSeparatorTests.cs -------------------------------------------------------------------------------- /Test/WidgetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Test/WidgetTests.cs -------------------------------------------------------------------------------- /TestApps/Gtk3Test/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Gtk3Test/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestApps/Gtk3Test/Gtk3Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Gtk3Test/Gtk3Test.csproj -------------------------------------------------------------------------------- /TestApps/Gtk3Test/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Gtk3Test/Main.cs -------------------------------------------------------------------------------- /TestApps/GtkOnMacTest/GtkOnMacTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/GtkOnMacTest/GtkOnMacTest.csproj -------------------------------------------------------------------------------- /TestApps/GtkOnMacTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/GtkOnMacTest/Program.cs -------------------------------------------------------------------------------- /TestApps/GtkOnMacTest/gtk-gui/gui.stetic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/GtkOnMacTest/gtk-gui/gui.stetic -------------------------------------------------------------------------------- /TestApps/GtkOnWindowsTest/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/GtkOnWindowsTest/MainWindow.cs -------------------------------------------------------------------------------- /TestApps/GtkOnWindowsTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/GtkOnWindowsTest/Program.cs -------------------------------------------------------------------------------- /TestApps/GtkTest/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/GtkTest/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestApps/GtkTest/GtkTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/GtkTest/GtkTest.csproj -------------------------------------------------------------------------------- /TestApps/GtkTest/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/GtkTest/Main.cs -------------------------------------------------------------------------------- /TestApps/MixedGtkMacTest/AppWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/MixedGtkMacTest/AppWindow.cs -------------------------------------------------------------------------------- /TestApps/MixedGtkMacTest/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/MixedGtkMacTest/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestApps/MixedGtkMacTest/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/MixedGtkMacTest/Main.cs -------------------------------------------------------------------------------- /TestApps/Samples/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/App.cs -------------------------------------------------------------------------------- /TestApps/Samples/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/MainWindow.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples.csproj -------------------------------------------------------------------------------- /TestApps/Samples/Samples/Boxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/Boxes.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/ButtonSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/ButtonSample.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/CalendarSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/CalendarSample.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/ChartSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/ChartSample.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/Checkboxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/Checkboxes.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/Colors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/Colors.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/ComboBoxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/ComboBoxes.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/Designer.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/DragDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/DragDrop.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/DrawingFigures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/DrawingFigures.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/DrawingText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/DrawingText.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/ExpanderSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/ExpanderSample.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/Frames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/Frames.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/Image9Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/Image9Patch.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/ImageScaling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/ImageScaling.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/Images.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/Images.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/Labels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/Labels.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/LinkLabels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/LinkLabels.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/ListBoxSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/ListBoxSample.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/ListView1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/ListView1.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/ListView2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/ListView2.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/ListViewCombos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/ListViewCombos.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/Markdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/Markdown.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/MenuSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/MenuSamples.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/MessageDialogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/MessageDialogs.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/Mnemonics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/Mnemonics.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/MouseCursors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/MouseCursors.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/NotebookSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/NotebookSample.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/OpacitySample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/OpacitySample.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/PanedViews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/PanedViews.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/PartialImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/PartialImages.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/PopoverSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/PopoverSample.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/PopupWindows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/PopupWindows.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/ScreensSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/ScreensSample.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/SliderSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/SliderSample.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/Spinners.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/Spinners.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/Tables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/Tables.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/TextEntries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/TextEntries.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/TextInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/TextInput.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/ThemedImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/ThemedImages.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/Tooltips.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/Tooltips.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/TreeViewEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/TreeViewEvents.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/TreeViews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/TreeViews.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/WebViewSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/WebViewSample.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/WidgetEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/WidgetEvents.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/WidgetFocus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/WidgetFocus.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/Windows.cs -------------------------------------------------------------------------------- /TestApps/Samples/Samples/cow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/Samples/cow.jpg -------------------------------------------------------------------------------- /TestApps/Samples/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/class.png -------------------------------------------------------------------------------- /TestApps/Samples/document-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/document-generic.png -------------------------------------------------------------------------------- /TestApps/Samples/document-generic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/document-generic@2x.png -------------------------------------------------------------------------------- /TestApps/Samples/icons/add-simple-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/icons/add-simple-16.png -------------------------------------------------------------------------------- /TestApps/Samples/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/package.png -------------------------------------------------------------------------------- /TestApps/Samples/zoom-panel-dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/zoom-panel-dark.9.png -------------------------------------------------------------------------------- /TestApps/Samples/zoom-panel-dark@2x.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/Samples/zoom-panel-dark@2x.9.png -------------------------------------------------------------------------------- /TestApps/WpfTest/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/WpfTest/Directory.Build.targets -------------------------------------------------------------------------------- /TestApps/WpfTest/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/WpfTest/Main.cs -------------------------------------------------------------------------------- /TestApps/WpfTest/WpfTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/WpfTest/WpfTest.csproj -------------------------------------------------------------------------------- /TestApps/WpfTest/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/WpfTest/app.config -------------------------------------------------------------------------------- /TestApps/XamMacTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/XamMacTest/Info.plist -------------------------------------------------------------------------------- /TestApps/XamMacTest/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/XamMacTest/Main.cs -------------------------------------------------------------------------------- /TestApps/XamMacTest/XamMacTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/TestApps/XamMacTest/XamMacTest.csproj -------------------------------------------------------------------------------- /Testing/CoreTests/ContextSwitchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/CoreTests/ContextSwitchTests.cs -------------------------------------------------------------------------------- /Testing/CoreTests/CoreTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/CoreTests/CoreTests.csproj -------------------------------------------------------------------------------- /Testing/CoreTests/FakeToolkit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/CoreTests/FakeToolkit.cs -------------------------------------------------------------------------------- /Testing/GtkTestRunner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/GtkTestRunner.csproj -------------------------------------------------------------------------------- /Testing/GtkTestRunner/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/GtkTestRunner/AssemblyInfo.cs -------------------------------------------------------------------------------- /Testing/GtkTestRunner/GtkInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/GtkTestRunner/GtkInit.cs -------------------------------------------------------------------------------- /Testing/GtkTestRunner/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/GtkTestRunner/Main.cs -------------------------------------------------------------------------------- /Testing/GtkTests/GtkIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/GtkTests/GtkIntegrationTests.cs -------------------------------------------------------------------------------- /Testing/GtkTests/PangoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/GtkTests/PangoTests.cs -------------------------------------------------------------------------------- /Testing/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Info.plist -------------------------------------------------------------------------------- /Testing/MacTestRunner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/MacTestRunner.csproj -------------------------------------------------------------------------------- /Testing/MacTestRunner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/MacTestRunner/Info.plist -------------------------------------------------------------------------------- /Testing/MacTestRunner/MacInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/MacTestRunner/MacInit.cs -------------------------------------------------------------------------------- /Testing/MacTestRunner/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/MacTestRunner/Main.cs -------------------------------------------------------------------------------- /Testing/Tests/BoxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/BoxTests.cs -------------------------------------------------------------------------------- /Testing/Tests/ButtonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ButtonTests.cs -------------------------------------------------------------------------------- /Testing/Tests/CanvasTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/CanvasTests.cs -------------------------------------------------------------------------------- /Testing/Tests/CheckBoxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/CheckBoxTests.cs -------------------------------------------------------------------------------- /Testing/Tests/ColorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ColorTests.cs -------------------------------------------------------------------------------- /Testing/Tests/ComboBoxEntryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ComboBoxEntryTests.cs -------------------------------------------------------------------------------- /Testing/Tests/ComboBoxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ComboBoxTests.cs -------------------------------------------------------------------------------- /Testing/Tests/ConsoleTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ConsoleTestRunner.cs -------------------------------------------------------------------------------- /Testing/Tests/ContainerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ContainerTests.cs -------------------------------------------------------------------------------- /Testing/Tests/DatePickerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/DatePickerTests.cs -------------------------------------------------------------------------------- /Testing/Tests/DialogTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/DialogTests.cs -------------------------------------------------------------------------------- /Testing/Tests/DrawingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/DrawingTests.cs -------------------------------------------------------------------------------- /Testing/Tests/DrawingTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/DrawingTestsBase.cs -------------------------------------------------------------------------------- /Testing/Tests/ExpanderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ExpanderTests.cs -------------------------------------------------------------------------------- /Testing/Tests/FontTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/FontTests.cs -------------------------------------------------------------------------------- /Testing/Tests/FormattedTextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/FormattedTextTests.cs -------------------------------------------------------------------------------- /Testing/Tests/FrameTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/FrameTests.cs -------------------------------------------------------------------------------- /Testing/Tests/HBoxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/HBoxTests.cs -------------------------------------------------------------------------------- /Testing/Tests/HPanedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/HPanedTests.cs -------------------------------------------------------------------------------- /Testing/Tests/HSeparatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/HSeparatorTests.cs -------------------------------------------------------------------------------- /Testing/Tests/ImageViewTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ImageViewTests.cs -------------------------------------------------------------------------------- /Testing/Tests/InternalChildrenTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/InternalChildrenTests.cs -------------------------------------------------------------------------------- /Testing/Tests/LabelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/LabelTests.cs -------------------------------------------------------------------------------- /Testing/Tests/LinkLabelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/LinkLabelTests.cs -------------------------------------------------------------------------------- /Testing/Tests/ListBoxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ListBoxTests.cs -------------------------------------------------------------------------------- /Testing/Tests/ListViewTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ListViewTests.cs -------------------------------------------------------------------------------- /Testing/Tests/MatrixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/MatrixTests.cs -------------------------------------------------------------------------------- /Testing/Tests/NinePatchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/NinePatchTests.cs -------------------------------------------------------------------------------- /Testing/Tests/NotebookTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/NotebookTests.cs -------------------------------------------------------------------------------- /Testing/Tests/PanedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/PanedTests.cs -------------------------------------------------------------------------------- /Testing/Tests/ProgressBarTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ProgressBarTests.cs -------------------------------------------------------------------------------- /Testing/Tests/RadioButtonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/RadioButtonTests.cs -------------------------------------------------------------------------------- /Testing/Tests/ReferenceImageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ReferenceImageManager.cs -------------------------------------------------------------------------------- /Testing/Tests/ReferenceImages/Arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ReferenceImages/Arc.png -------------------------------------------------------------------------------- /Testing/Tests/ReferenceImages/ArcFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ReferenceImages/ArcFill.png -------------------------------------------------------------------------------- /Testing/Tests/ReferenceImages/Clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ReferenceImages/Clip.png -------------------------------------------------------------------------------- /Testing/Tests/ReferenceImages/Curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ReferenceImages/Curve.png -------------------------------------------------------------------------------- /Testing/Tests/ReferenceImages/Line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ReferenceImages/Line.png -------------------------------------------------------------------------------- /Testing/Tests/ReferenceImages/NewPath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ReferenceImages/NewPath.png -------------------------------------------------------------------------------- /Testing/Tests/ReferenceImages/Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ReferenceImages/Text.png -------------------------------------------------------------------------------- /Testing/Tests/ReferenceImages/TextSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ReferenceImages/TextSize.png -------------------------------------------------------------------------------- /Testing/Tests/ScrollViewTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ScrollViewTests.cs -------------------------------------------------------------------------------- /Testing/Tests/ScrollableWidgetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ScrollableWidgetTests.cs -------------------------------------------------------------------------------- /Testing/Tests/ScrollbarTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ScrollbarTests.cs -------------------------------------------------------------------------------- /Testing/Tests/SegmentedButtonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/SegmentedButtonTests.cs -------------------------------------------------------------------------------- /Testing/Tests/SliderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/SliderTests.cs -------------------------------------------------------------------------------- /Testing/Tests/SpinButtonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/SpinButtonTests.cs -------------------------------------------------------------------------------- /Testing/Tests/SpinnerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/SpinnerTests.cs -------------------------------------------------------------------------------- /Testing/Tests/TableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/TableTests.cs -------------------------------------------------------------------------------- /Testing/Tests/Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/Test.csproj -------------------------------------------------------------------------------- /Testing/Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/Tests.csproj -------------------------------------------------------------------------------- /Testing/Tests/TextEntryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/TextEntryTests.cs -------------------------------------------------------------------------------- /Testing/Tests/ToggleButtonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ToggleButtonTests.cs -------------------------------------------------------------------------------- /Testing/Tests/TransformTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/TransformTests.cs -------------------------------------------------------------------------------- /Testing/Tests/TreeViewTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/TreeViewTests.cs -------------------------------------------------------------------------------- /Testing/Tests/VBoxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/VBoxTests.cs -------------------------------------------------------------------------------- /Testing/Tests/VPanedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/VPanedTests.cs -------------------------------------------------------------------------------- /Testing/Tests/VScrollbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/VScrollbar.cs -------------------------------------------------------------------------------- /Testing/Tests/VSeparatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/VSeparatorTests.cs -------------------------------------------------------------------------------- /Testing/Tests/WidgetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/WidgetTests.cs -------------------------------------------------------------------------------- /Testing/Tests/WindowTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/WindowTests.cs -------------------------------------------------------------------------------- /Testing/Tests/XwtTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/XwtTest.cs -------------------------------------------------------------------------------- /Testing/Tests/ninep-ss.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ninep-ss.9.png -------------------------------------------------------------------------------- /Testing/Tests/ninep-ss@2x.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ninep-ss@2x.9.png -------------------------------------------------------------------------------- /Testing/Tests/ninep-st.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ninep-st.9.png -------------------------------------------------------------------------------- /Testing/Tests/ninep-st@2x.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ninep-st@2x.9.png -------------------------------------------------------------------------------- /Testing/Tests/ninep-ts.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ninep-ts.9.png -------------------------------------------------------------------------------- /Testing/Tests/ninep-ts@2x.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ninep-ts@2x.9.png -------------------------------------------------------------------------------- /Testing/Tests/ninep-tt.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ninep-tt.9.png -------------------------------------------------------------------------------- /Testing/Tests/ninep-tt@2x.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/Tests/ninep-tt@2x.9.png -------------------------------------------------------------------------------- /Testing/WpfTestRunner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/WpfTestRunner.csproj -------------------------------------------------------------------------------- /Testing/WpfTestRunner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/WpfTestRunner/Program.cs -------------------------------------------------------------------------------- /Testing/WpfTestRunner/WpfInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/WpfTestRunner/WpfInit.cs -------------------------------------------------------------------------------- /Testing/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Testing/packages.config -------------------------------------------------------------------------------- /Xwt.Gtk.Mac/Carbon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk.Mac/Carbon.cs -------------------------------------------------------------------------------- /Xwt.Gtk.Mac/GtkMacAccessibleBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk.Mac/GtkMacAccessibleBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk.Mac/GtkMacDesktopBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk.Mac/GtkMacDesktopBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk.Mac/GtkMacFontBackendHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk.Mac/GtkMacFontBackendHandler.cs -------------------------------------------------------------------------------- /Xwt.Gtk.Mac/GtkMacPopoverBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk.Mac/GtkMacPopoverBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk.Mac/GtkQuartz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk.Mac/GtkQuartz.cs -------------------------------------------------------------------------------- /Xwt.Gtk.Mac/MacPlatformBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk.Mac/MacPlatformBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk.Mac/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk.Mac/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Xwt.Gtk.Mac/WebViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk.Mac/WebViewBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk.Mac/Xwt.Gtk.Mac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk.Mac/Xwt.Gtk.Mac.csproj -------------------------------------------------------------------------------- /Xwt.Gtk.Mac/Xwt.Gtk.Mac.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk.Mac/Xwt.Gtk.Mac.nuspec -------------------------------------------------------------------------------- /Xwt.Gtk.Windows/GtkWin32Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk.Windows/GtkWin32Interop.cs -------------------------------------------------------------------------------- /Xwt.Gtk.Windows/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk.Windows/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Xwt.Gtk.Windows/WebViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk.Windows/WebViewBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk.Windows/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk.Windows/Win32.cs -------------------------------------------------------------------------------- /Xwt.Gtk.Windows/WindowsPlatformBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk.Windows/WindowsPlatformBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk.Windows/Xwt.Gtk.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk.Windows/Xwt.Gtk.Windows.csproj -------------------------------------------------------------------------------- /Xwt.Gtk.Windows/Xwt.Gtk.Windows.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk.Windows/Xwt.Gtk.Windows.nuspec -------------------------------------------------------------------------------- /Xwt.Gtk/AssemblyInfo.Gtk3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/AssemblyInfo.Gtk3.cs -------------------------------------------------------------------------------- /Xwt.Gtk/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/AssemblyInfo.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.Gtk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.Gtk.csproj -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.Gtk.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.Gtk.dll.config -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.Gtk.nuget.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.Gtk.nuget.props -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.Gtk.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.Gtk.nuspec -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.Gtk3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.Gtk3.csproj -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.Gtk3.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.Gtk3.dll.config -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.Gtk3.nuget.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.Gtk3.nuget.props -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.Gtk3.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.Gtk3.nuspec -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/BoxBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/BoxBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/BoxBackendGtk2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/BoxBackendGtk2.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/BoxBackendGtk3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/BoxBackendGtk3.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/ButtonBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/ButtonBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/CalendarBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/CalendarBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/CanvasBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/CanvasBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/CheckBoxBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/CheckBoxBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/ClipboardBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/ClipboardBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/ComboBoxBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/ComboBoxBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/Conversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/Conversion.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/CustomListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/CustomListModel.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/CustomTreeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/CustomTreeModel.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/DialogBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/DialogBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/ExpanderBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/ExpanderBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/FrameBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/FrameBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/Gtk2DrawingArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/Gtk2DrawingArea.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/Gtk2Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/Gtk2Extensions.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/Gtk2ViewPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/Gtk2ViewPort.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/Gtk3DrawingArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/Gtk3DrawingArea.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/Gtk3Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/Gtk3Extensions.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/Gtk3ViewPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/Gtk3ViewPort.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/GtkAlertDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/GtkAlertDialog.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/GtkEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/GtkEngine.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/GtkInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/GtkInterop.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/GtkMacInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/GtkMacInterop.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/GtkWebKitMini.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/GtkWebKitMini.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/GtkWorkarounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/GtkWorkarounds.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/HeaderBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/HeaderBox.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/HeaderBoxGtk2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/HeaderBoxGtk2.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/HeaderBoxGtk3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/HeaderBoxGtk3.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/ImageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/ImageHandler.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/ImageViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/ImageViewBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/LabelBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/LabelBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/LabelBackendGtk2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/LabelBackendGtk2.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/LabelBackendGtk3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/LabelBackendGtk3.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/LinkLabelBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/LinkLabelBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/ListBoxBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/ListBoxBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/ListStoreBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/ListStoreBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/ListViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/ListViewBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/MenuBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/MenuBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/MenuItemBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/MenuItemBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/MessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/MessageService.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/NotebookBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/NotebookBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/PanedBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/PanedBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/PanedBackendGtk3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/PanedBackendGtk3.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/Platform.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/PopoverBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/PopoverBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/ScrollbarBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/ScrollbarBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/SeparatorBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/SeparatorBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/SliderBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/SliderBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/SpinnerBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/SpinnerBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/TableViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/TableViewBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/TextEntryBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/TextEntryBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/TreeStoreBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/TreeStoreBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/TreeViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/TreeViewBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/Util.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/WebViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/WebViewBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/WidgetBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/WidgetBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/Xwt.GtkBackend/WindowBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/Xwt.GtkBackend/WindowBackend.cs -------------------------------------------------------------------------------- /Xwt.Gtk/icons/searchbox-clear-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/icons/searchbox-clear-16.png -------------------------------------------------------------------------------- /Xwt.Gtk/icons/searchbox-clear-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/icons/searchbox-clear-16@2x.png -------------------------------------------------------------------------------- /Xwt.Gtk/icons/searchbox-clear-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/icons/searchbox-clear-16~dark.png -------------------------------------------------------------------------------- /Xwt.Gtk/icons/searchbox-search-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/icons/searchbox-search-16.png -------------------------------------------------------------------------------- /Xwt.Gtk/icons/searchbox-search-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/icons/searchbox-search-16@2x.png -------------------------------------------------------------------------------- /Xwt.Gtk/icons/searchbox-search-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.Gtk/icons/searchbox-search-16~dark.png -------------------------------------------------------------------------------- /Xwt.WPF/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/AssemblyInfo.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPF.csproj -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/Backend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/Backend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/BoxBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/BoxBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ButtonBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ButtonBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/CalendarBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/CalendarBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/CanvasBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/CanvasBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/CheckBoxBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/CheckBoxBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ClipboardBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ClipboardBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ComboBoxBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ComboBoxBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/DataConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/DataConverter.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/DelegatedCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/DelegatedCommand.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/DialogBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/DialogBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/DrawingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/DrawingContext.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/DropDownButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/DropDownButton.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ExComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ExComboBox.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ExGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ExGrid.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ExListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ExListBox.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ExListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ExListBoxItem.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ExListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ExListView.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ExListViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ExListViewItem.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ExRichTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ExRichTextBox.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ExScrollViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ExScrollViewer.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ExTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ExTextBox.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ExTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ExTreeView.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ExTreeViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ExTreeViewItem.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ExpanderBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ExpanderBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/FrameBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/FrameBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ImageAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ImageAdorner.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ImageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ImageHandler.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ImageViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ImageViewBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/KeyboardUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/KeyboardUtil.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/LabelBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/LabelBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/LinkLabelBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/LinkLabelBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ListBoxBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ListBoxBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ListDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ListDataSource.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ListViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ListViewBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/MenuBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/MenuBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/MenuItemBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/MenuItemBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/NotebookBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/NotebookBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/PanedBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/PanedBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/PopoverBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/PopoverBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ResPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ResPool.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ScrollView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ScrollView.xaml -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ScrollbarBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ScrollbarBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/SeparatorBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/SeparatorBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/SliderBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/SliderBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/SpinnerBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/SpinnerBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/TextEntryBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/TextEntryBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/Timeout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/Timeout.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/TreeStoreBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/TreeStoreBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/TreeStoreNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/TreeStoreNode.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/TreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/TreeView.xaml -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/TreeViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/TreeViewBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/Util.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/ValuesContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/ValuesContainer.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/WPFEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/WPFEngine.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/WebViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/WebViewBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/WidgetBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/WidgetBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/Xwt.WPFBackend/WindowBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/Xwt.WPFBackend/WindowBackend.cs -------------------------------------------------------------------------------- /Xwt.WPF/icons/add-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/icons/add-16.png -------------------------------------------------------------------------------- /Xwt.WPF/icons/add-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/icons/add-16~dark.png -------------------------------------------------------------------------------- /Xwt.WPF/icons/add-16~dark~disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/icons/add-16~dark~disabled.png -------------------------------------------------------------------------------- /Xwt.WPF/icons/add-16~disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/icons/add-16~disabled.png -------------------------------------------------------------------------------- /Xwt.WPF/icons/remove-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/icons/remove-16.png -------------------------------------------------------------------------------- /Xwt.WPF/icons/remove-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/icons/remove-16~dark.png -------------------------------------------------------------------------------- /Xwt.WPF/icons/remove-16~dark~disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/icons/remove-16~dark~disabled.png -------------------------------------------------------------------------------- /Xwt.WPF/icons/remove-16~disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.WPF/icons/remove-16~disabled.png -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac.CellViews/CellUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac.CellViews/CellUtil.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/AccerssibilityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/AccerssibilityHelper.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/AccessibleBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/AccessibleBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/AlertDialogBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/AlertDialogBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/BoxBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/BoxBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/ButtonBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/ButtonBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/CalendarBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/CalendarBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/CanvasBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/CanvasBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/CheckBoxBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/CheckBoxBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/ColorPickerBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/ColorPickerBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/ComboBoxBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/ComboBoxBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/ComboBoxEntryBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/ComboBoxEntryBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/CustomWidgetBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/CustomWidgetBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/DatePickerBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/DatePickerBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/DialogBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/DialogBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/ExpanderBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/ExpanderBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/FileDialogBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/FileDialogBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/FontBackendHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/FontBackendHandler.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/FrameBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/FrameBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/GtkQuartz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/GtkQuartz.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/IViewObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/IViewObject.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/ImageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/ImageHandler.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/ImageViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/ImageViewBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/KeyboardUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/KeyboardUtil.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/LabelBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/LabelBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/LinkLabelBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/LinkLabelBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/ListBoxBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/ListBoxBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/ListViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/ListViewBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/MacClipboardBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/MacClipboardBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/MacDesktopBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/MacDesktopBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/MacEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/MacEngine.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/MacKeyboardHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/MacKeyboardHandler.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/MacSystemInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/MacSystemInformation.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/MenuBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/MenuBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/MenuButtonBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/MenuButtonBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/MenuItemBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/MenuItemBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/Messaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/Messaging.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/NSTableViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/NSTableViewBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/NotebookBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/NotebookBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/ObjcHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/ObjcHelper.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/OutlineViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/OutlineViewBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/PanedBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/PanedBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/PasswordEntryBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/PasswordEntryBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/PathBackendHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/PathBackendHandler.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/PopoverBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/PopoverBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/PopupWindowBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/PopupWindowBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/ProgressBarBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/ProgressBarBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/RadioButtonBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/RadioButtonBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/RichTextViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/RichTextViewBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/ScrollControlBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/ScrollControlBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/ScrollViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/ScrollViewBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/ScrollbarBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/ScrollbarBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/SeparatorBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/SeparatorBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/SliderBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/SliderBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/SpinButtonBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/SpinButtonBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/SpinnerBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/SpinnerBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/StatusIconBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/StatusIconBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/TableViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/TableViewBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/TextEntryBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/TextEntryBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/ToggleButtonBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/ToggleButtonBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/TreeViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/TreeViewBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/Util.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/ViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/ViewBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/WebViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/WebViewBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/WidgetView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/WidgetView.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/WindowBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/WindowBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.Mac/WindowFrameBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.Mac/WindowFrameBackend.cs -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.XamMac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.XamMac.csproj -------------------------------------------------------------------------------- /Xwt.XamMac/Xwt.XamMac.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/Xwt.XamMac.nuspec -------------------------------------------------------------------------------- /Xwt.XamMac/icons/zoom-in-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/icons/zoom-in-16.png -------------------------------------------------------------------------------- /Xwt.XamMac/icons/zoom-in-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/icons/zoom-in-16@2x.png -------------------------------------------------------------------------------- /Xwt.XamMac/icons/zoom-in-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/icons/zoom-in-16~dark.png -------------------------------------------------------------------------------- /Xwt.XamMac/icons/zoom-in-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/icons/zoom-in-16~dark@2x.png -------------------------------------------------------------------------------- /Xwt.XamMac/icons/zoom-in-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/icons/zoom-in-16~dark~sel.png -------------------------------------------------------------------------------- /Xwt.XamMac/icons/zoom-in-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/icons/zoom-in-16~sel.png -------------------------------------------------------------------------------- /Xwt.XamMac/icons/zoom-in-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/icons/zoom-in-16~sel@2x.png -------------------------------------------------------------------------------- /Xwt.XamMac/icons/zoom-out-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/icons/zoom-out-16.png -------------------------------------------------------------------------------- /Xwt.XamMac/icons/zoom-out-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/icons/zoom-out-16@2x.png -------------------------------------------------------------------------------- /Xwt.XamMac/icons/zoom-out-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/icons/zoom-out-16~dark.png -------------------------------------------------------------------------------- /Xwt.XamMac/icons/zoom-out-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/icons/zoom-out-16~dark@2x.png -------------------------------------------------------------------------------- /Xwt.XamMac/icons/zoom-out-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/icons/zoom-out-16~dark~sel.png -------------------------------------------------------------------------------- /Xwt.XamMac/icons/zoom-out-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/icons/zoom-out-16~sel.png -------------------------------------------------------------------------------- /Xwt.XamMac/icons/zoom-out-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.XamMac/icons/zoom-out-16~sel@2x.png -------------------------------------------------------------------------------- /Xwt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt.sln -------------------------------------------------------------------------------- /Xwt/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/AssemblyInfo.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Accessibility/Accessible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Accessibility/Accessible.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Accessibility/AccessibleFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Accessibility/AccessibleFields.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Accessibility/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Accessibility/Role.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ApplicationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ApplicationContext.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/BackendHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/BackendHandler.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/BackendHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/BackendHost.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/BackendTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/BackendTypeAttribute.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ClipboardBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ClipboardBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ContextBackendHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ContextBackendHandler.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/DefaultNaturalSizes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/DefaultNaturalSizes.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/DesktopBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/DesktopBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/EventHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/EventHost.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ExtensionMethods.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/FontBackendHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/FontBackendHandler.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/GradientBackendHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/GradientBackendHandler.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IAlertDialogBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IAlertDialogBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IBoxBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IBoxBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IButtonBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IButtonBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ICalendarBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ICalendarBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ICanvasBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ICanvasBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ICanvasCellViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ICanvasCellViewBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ICellViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ICellViewBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ICellViewFrontend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ICellViewFrontend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ICheckBoxBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ICheckBoxBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IChildPlacementHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IChildPlacementHandler.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ICollectionListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ICollectionListener.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IColorPickerBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IColorPickerBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IColorSelectorBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IColorSelectorBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IComboBoxBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IComboBoxBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IComboBoxEntryBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IComboBoxEntryBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ICustomWidgetBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ICustomWidgetBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IDatePickerBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IDatePickerBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IDialogBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IDialogBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IDispatcherBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IDispatcherBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IEmbeddedWidgetBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IEmbeddedWidgetBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IExpandBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IExpandBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IFileDialogBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IFileDialogBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IFrameBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IFrameBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IFrontend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IFrontend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IImageViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IImageViewBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ILabelBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ILabelBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ILinkLabelBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ILinkLabelBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IListBoxBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IListBoxBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IListStoreBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IListStoreBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IListViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IListViewBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IMenuBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IMenuBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IMenuButtonBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IMenuButtonBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IMenuItemBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IMenuItemBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/INotebookBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/INotebookBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IPanedBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IPanedBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IPopoverBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IPopoverBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IPopupWindowBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IPopupWindowBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IProgressBarBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IProgressBarBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IRadioButtonBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IRadioButtonBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IScrollViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IScrollViewBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IScrollbarBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IScrollbarBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ISeparatorBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ISeparatorBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ISliderBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ISliderBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ISpinButtonBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ISpinButtonBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ISpinnerBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ISpinnerBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IStatusIconBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IStatusIconBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ITableViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ITableViewBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ITextEntryBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ITextEntryBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ITreeStoreBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ITreeStoreBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ITreeViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ITreeViewBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IWebViewBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IWebViewBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IWidgetBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IWidgetBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IWindowBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IWindowBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/IWindowFrameBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/IWindowFrameBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ImageBackendHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ImageBackendHandler.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/KeyboardHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/KeyboardHandler.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/ResourceManager.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/StockIconId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/StockIconId.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/TransferDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/TransferDataStore.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Backends/XwtWidgetBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Backends/XwtWidgetBackend.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Design/DesignerSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Design/DesignerSurface.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/BitmapImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/BitmapImage.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/Color.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/ColorTextAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/ColorTextAttribute.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/Colors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/Colors.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/ComposedImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/ComposedImage.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/Context.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/DrawingImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/DrawingImage.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/DrawingPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/DrawingPath.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/Font.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/FontTextAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/FontTextAttribute.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/Gradient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/Gradient.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/HslColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/HslColor.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/IImageLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/IImageLoader.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/Image.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/ImageBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/ImageBuilder.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/ImageFileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/ImageFileType.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/ImageFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/ImageFormat.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/ImagePattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/ImagePattern.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/LinearGradient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/LinearGradient.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/LinkTextAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/LinkTextAttribute.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/Matrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/Matrix.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/NinePatchImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/NinePatchImage.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/Pattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/Pattern.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/RadialGradient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/RadialGradient.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/StyleSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/StyleSet.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/TextAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/TextAttribute.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/TextLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/TextLayout.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/ThemedImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/ThemedImage.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Drawing/VectorImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Drawing/VectorImage.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Formats/MarkdownTextFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Formats/MarkdownTextFormat.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Formats/MarkupTextFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Formats/MarkupTextFormat.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Formats/PlainTextFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Formats/PlainTextFormat.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Formats/TextFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Formats/TextFormat.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Motion/Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Motion/Animation.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Motion/AnimationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Motion/AnimationExtensions.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Motion/Easing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Motion/Easing.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Motion/IAnimatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Motion/IAnimatable.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Motion/ObjectTransforms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Motion/ObjectTransforms.cs -------------------------------------------------------------------------------- /Xwt/Xwt.Motion/Tweener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.Motion/Tweener.cs -------------------------------------------------------------------------------- /Xwt/Xwt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt.csproj -------------------------------------------------------------------------------- /Xwt/Xwt/Alignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Alignment.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Application.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Box.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Button.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Button.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ButtonEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ButtonEventArgs.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ButtonStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ButtonStyle.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Calendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Calendar.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Canvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Canvas.cs -------------------------------------------------------------------------------- /Xwt/Xwt/CanvasCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/CanvasCellView.cs -------------------------------------------------------------------------------- /Xwt/Xwt/CellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/CellView.cs -------------------------------------------------------------------------------- /Xwt/Xwt/CellViewCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/CellViewCollection.cs -------------------------------------------------------------------------------- /Xwt/Xwt/CheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/CheckBox.cs -------------------------------------------------------------------------------- /Xwt/Xwt/CheckBoxCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/CheckBoxCellView.cs -------------------------------------------------------------------------------- /Xwt/Xwt/CheckBoxMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/CheckBoxMenuItem.cs -------------------------------------------------------------------------------- /Xwt/Xwt/CheckBoxState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/CheckBoxState.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ChildrenCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ChildrenCollection.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Clipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Clipboard.cs -------------------------------------------------------------------------------- /Xwt/Xwt/CloseRequestedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/CloseRequestedEventArgs.cs -------------------------------------------------------------------------------- /Xwt/Xwt/CloseRequestedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/CloseRequestedHandler.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ColorPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ColorPicker.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ColorSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ColorSelector.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ComboBox.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ComboBoxCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ComboBoxCellView.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ComboBoxEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ComboBoxEntry.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Command.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ContentPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ContentPosition.cs -------------------------------------------------------------------------------- /Xwt/Xwt/CursorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/CursorType.cs -------------------------------------------------------------------------------- /Xwt/Xwt/DataField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/DataField.cs -------------------------------------------------------------------------------- /Xwt/Xwt/DataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/DataStore.cs -------------------------------------------------------------------------------- /Xwt/Xwt/DatePicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/DatePicker.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Desktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Desktop.cs -------------------------------------------------------------------------------- /Xwt/Xwt/DesktopType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/DesktopType.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Dialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Dialog.cs -------------------------------------------------------------------------------- /Xwt/Xwt/DialogButtonCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/DialogButtonCollection.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Distance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Distance.cs -------------------------------------------------------------------------------- /Xwt/Xwt/DragDropAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/DragDropAction.cs -------------------------------------------------------------------------------- /Xwt/Xwt/DragEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/DragEventArgs.cs -------------------------------------------------------------------------------- /Xwt/Xwt/DragOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/DragOperation.cs -------------------------------------------------------------------------------- /Xwt/Xwt/EllipsizeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/EllipsizeMode.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ExceptionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ExceptionEventArgs.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Expander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Expander.cs -------------------------------------------------------------------------------- /Xwt/Xwt/FileDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/FileDialog.cs -------------------------------------------------------------------------------- /Xwt/Xwt/FileDialogFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/FileDialogFilter.cs -------------------------------------------------------------------------------- /Xwt/Xwt/FileSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/FileSelector.cs -------------------------------------------------------------------------------- /Xwt/Xwt/FolderSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/FolderSelector.cs -------------------------------------------------------------------------------- /Xwt/Xwt/FontSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/FontSelector.cs -------------------------------------------------------------------------------- /Xwt/Xwt/FormattedText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/FormattedText.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Frame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Frame.cs -------------------------------------------------------------------------------- /Xwt/Xwt/FrameBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/FrameBox.cs -------------------------------------------------------------------------------- /Xwt/Xwt/GridLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/GridLines.cs -------------------------------------------------------------------------------- /Xwt/Xwt/HBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/HBox.cs -------------------------------------------------------------------------------- /Xwt/Xwt/HPaned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/HPaned.cs -------------------------------------------------------------------------------- /Xwt/Xwt/HScrollbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/HScrollbar.cs -------------------------------------------------------------------------------- /Xwt/Xwt/HSeparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/HSeparator.cs -------------------------------------------------------------------------------- /Xwt/Xwt/HSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/HSlider.cs -------------------------------------------------------------------------------- /Xwt/Xwt/IContainerEventSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/IContainerEventSink.cs -------------------------------------------------------------------------------- /Xwt/Xwt/IListDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/IListDataSource.cs -------------------------------------------------------------------------------- /Xwt/Xwt/IScrollableWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/IScrollableWidget.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ITranslationCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ITranslationCatalog.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ITreeDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ITreeDataSource.cs -------------------------------------------------------------------------------- /Xwt/Xwt/IWidgetSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/IWidgetSurface.cs -------------------------------------------------------------------------------- /Xwt/Xwt/IconSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/IconSize.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ImageCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ImageCellView.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ImageView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ImageView.cs -------------------------------------------------------------------------------- /Xwt/Xwt/InvalidConstructorInvocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/InvalidConstructorInvocation.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ItemCollection.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ItemSeparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ItemSeparator.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Key.cs -------------------------------------------------------------------------------- /Xwt/Xwt/KeyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/KeyEventArgs.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Keyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Keyboard.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Label.cs -------------------------------------------------------------------------------- /Xwt/Xwt/LinkLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/LinkLabel.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ListBox.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ListStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ListStore.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ListView.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ListViewColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ListViewColumn.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ListViewColumnCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ListViewColumnCollection.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ListViewRowEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ListViewRowEventArgs.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Menu.cs -------------------------------------------------------------------------------- /Xwt/Xwt/MenuButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/MenuButton.cs -------------------------------------------------------------------------------- /Xwt/Xwt/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/MenuItem.cs -------------------------------------------------------------------------------- /Xwt/Xwt/MenuItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/MenuItemCollection.cs -------------------------------------------------------------------------------- /Xwt/Xwt/MessageDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/MessageDialog.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ModifierKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ModifierKeys.cs -------------------------------------------------------------------------------- /Xwt/Xwt/MouseMovedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/MouseMovedEventArgs.cs -------------------------------------------------------------------------------- /Xwt/Xwt/MouseScrolledEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/MouseScrolledEventArgs.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Notebook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Notebook.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ObjectCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ObjectCollection.cs -------------------------------------------------------------------------------- /Xwt/Xwt/OpenFileDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/OpenFileDialog.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Paned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Paned.cs -------------------------------------------------------------------------------- /Xwt/Xwt/PasswordEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/PasswordEntry.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Placement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Placement.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Point.cs -------------------------------------------------------------------------------- /Xwt/Xwt/PointerButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/PointerButton.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Popover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Popover.cs -------------------------------------------------------------------------------- /Xwt/Xwt/PopupWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/PopupWindow.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ProgressBar.cs -------------------------------------------------------------------------------- /Xwt/Xwt/RadioButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/RadioButton.cs -------------------------------------------------------------------------------- /Xwt/Xwt/RadioButtonCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/RadioButtonCellView.cs -------------------------------------------------------------------------------- /Xwt/Xwt/RadioButtonMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/RadioButtonMenuItem.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Rectangle.cs -------------------------------------------------------------------------------- /Xwt/Xwt/RichTextView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/RichTextView.cs -------------------------------------------------------------------------------- /Xwt/Xwt/RowDropPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/RowDropPosition.cs -------------------------------------------------------------------------------- /Xwt/Xwt/SaveFileDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/SaveFileDialog.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Screen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Screen.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ScrollAdjustment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ScrollAdjustment.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ScrollControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ScrollControl.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ScrollView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ScrollView.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Scrollbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Scrollbar.cs -------------------------------------------------------------------------------- /Xwt/Xwt/SearchTextEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/SearchTextEntry.cs -------------------------------------------------------------------------------- /Xwt/Xwt/SegmentedButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/SegmentedButton.cs -------------------------------------------------------------------------------- /Xwt/Xwt/SelectColorDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/SelectColorDialog.cs -------------------------------------------------------------------------------- /Xwt/Xwt/SelectFolderDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/SelectFolderDialog.cs -------------------------------------------------------------------------------- /Xwt/Xwt/SelectFontDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/SelectFontDialog.cs -------------------------------------------------------------------------------- /Xwt/Xwt/SelectionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/SelectionMode.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Separator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Separator.cs -------------------------------------------------------------------------------- /Xwt/Xwt/SeparatorMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/SeparatorMenuItem.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Size.cs -------------------------------------------------------------------------------- /Xwt/Xwt/SizeConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/SizeConstraint.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Slider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Slider.cs -------------------------------------------------------------------------------- /Xwt/Xwt/SpinButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/SpinButton.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Spinner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Spinner.cs -------------------------------------------------------------------------------- /Xwt/Xwt/StatusIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/StatusIcon.cs -------------------------------------------------------------------------------- /Xwt/Xwt/StockIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/StockIcons.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Table.cs -------------------------------------------------------------------------------- /Xwt/Xwt/TableCalc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/TableCalc.cs -------------------------------------------------------------------------------- /Xwt/Xwt/TextCellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/TextCellView.cs -------------------------------------------------------------------------------- /Xwt/Xwt/TextChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/TextChangedEventArgs.cs -------------------------------------------------------------------------------- /Xwt/Xwt/TextEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/TextEntry.cs -------------------------------------------------------------------------------- /Xwt/Xwt/TextInputEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/TextInputEventArgs.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ToggleButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ToggleButton.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Toolkit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Toolkit.cs -------------------------------------------------------------------------------- /Xwt/Xwt/ToolkitDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/ToolkitDefaults.cs -------------------------------------------------------------------------------- /Xwt/Xwt/TransferDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/TransferDataSource.cs -------------------------------------------------------------------------------- /Xwt/Xwt/TransferDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/TransferDataType.cs -------------------------------------------------------------------------------- /Xwt/Xwt/TreeNavigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/TreeNavigator.cs -------------------------------------------------------------------------------- /Xwt/Xwt/TreePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/TreePosition.cs -------------------------------------------------------------------------------- /Xwt/Xwt/TreeStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/TreeStore.cs -------------------------------------------------------------------------------- /Xwt/Xwt/TreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/TreeView.cs -------------------------------------------------------------------------------- /Xwt/Xwt/TreeViewRowEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/TreeViewRowEventArgs.cs -------------------------------------------------------------------------------- /Xwt/Xwt/TreeViewStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/TreeViewStatus.cs -------------------------------------------------------------------------------- /Xwt/Xwt/UtilityWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/UtilityWindow.cs -------------------------------------------------------------------------------- /Xwt/Xwt/VBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/VBox.cs -------------------------------------------------------------------------------- /Xwt/Xwt/VPaned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/VPaned.cs -------------------------------------------------------------------------------- /Xwt/Xwt/VScrollbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/VScrollbar.cs -------------------------------------------------------------------------------- /Xwt/Xwt/VSeparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/VSeparator.cs -------------------------------------------------------------------------------- /Xwt/Xwt/VSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/VSlider.cs -------------------------------------------------------------------------------- /Xwt/Xwt/WebView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/WebView.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Widget.cs -------------------------------------------------------------------------------- /Xwt/Xwt/WidgetAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/WidgetAlignment.cs -------------------------------------------------------------------------------- /Xwt/Xwt/WidgetCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/WidgetCollection.cs -------------------------------------------------------------------------------- /Xwt/Xwt/WidgetEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/WidgetEventArgs.cs -------------------------------------------------------------------------------- /Xwt/Xwt/WidgetSpacing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/WidgetSpacing.cs -------------------------------------------------------------------------------- /Xwt/Xwt/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/Window.cs -------------------------------------------------------------------------------- /Xwt/Xwt/WindowFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/WindowFrame.cs -------------------------------------------------------------------------------- /Xwt/Xwt/WindowLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/WindowLocation.cs -------------------------------------------------------------------------------- /Xwt/Xwt/WrapMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/WrapMode.cs -------------------------------------------------------------------------------- /Xwt/Xwt/XwtComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/XwtComponent.cs -------------------------------------------------------------------------------- /Xwt/Xwt/XwtObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/XwtObject.cs -------------------------------------------------------------------------------- /Xwt/Xwt/XwtSynchronizationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/XwtSynchronizationContext.cs -------------------------------------------------------------------------------- /Xwt/Xwt/XwtTaskScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/Xwt/Xwt/XwtTaskScheduler.cs -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/ButtonEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/ButtonEvent.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/CheckBoxEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/CheckBoxEvent.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/ComboBoxEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/ComboBoxEvent.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/EngineBackend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/EngineBackend.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/IBoxBackend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/IBoxBackend.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/IButtonBackend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/IButtonBackend.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/ICanvasBackend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/ICanvasBackend.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/IDialogBackend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/IDialogBackend.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/IFrameBackend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/IFrameBackend.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/ILabelBackend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/ILabelBackend.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/IMenuBackend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/IMenuBackend.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/IPanedBackend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/IPanedBackend.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/IWidgetBackend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/IWidgetBackend.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/IWindowBackend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/IWindowBackend.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/MenuItemEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/MenuItemEvent.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/NotebookEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/NotebookEvent.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/Orientation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/Orientation.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/TableViewEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/TableViewEvent.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/TextEntryEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/TextEntryEvent.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Backends/WidgetEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Backends/WidgetEvent.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Design/DesignerSurface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Design/DesignerSurface.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Drawing/Color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Drawing/Color.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Drawing/Context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Drawing/Context.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Drawing/Font.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Drawing/Font.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Drawing/FontStretch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Drawing/FontStretch.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Drawing/FontStyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Drawing/FontStyle.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Drawing/FontWeight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Drawing/FontWeight.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Drawing/Gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Drawing/Gradient.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Drawing/Image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Drawing/Image.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Drawing/LinearGradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Drawing/LinearGradient.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Drawing/Pattern.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Drawing/Pattern.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Drawing/TextLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Drawing/TextLayout.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Engine/Toolkit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Engine/Toolkit.xml -------------------------------------------------------------------------------- /docs/en/Xwt.Engine/WidgetRegistry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt.Engine/WidgetRegistry.xml -------------------------------------------------------------------------------- /docs/en/Xwt/AlertOption.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/AlertOption.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Alignment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Alignment.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Application.xml -------------------------------------------------------------------------------- /docs/en/Xwt/AttachOptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/AttachOptions.xml -------------------------------------------------------------------------------- /docs/en/Xwt/BoundsChangedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/BoundsChangedEventArgs.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Box.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Box.xml -------------------------------------------------------------------------------- /docs/en/Xwt/BoxMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/BoxMode.xml -------------------------------------------------------------------------------- /docs/en/Xwt/BoxPlacement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/BoxPlacement.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Button.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ButtonEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ButtonEventArgs.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ButtonStyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ButtonStyle.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ButtonType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ButtonType.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Canvas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Canvas.xml -------------------------------------------------------------------------------- /docs/en/Xwt/CellView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/CellView.xml -------------------------------------------------------------------------------- /docs/en/Xwt/CellViewCollection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/CellViewCollection.xml -------------------------------------------------------------------------------- /docs/en/Xwt/CheckBox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/CheckBox.xml -------------------------------------------------------------------------------- /docs/en/Xwt/CheckBoxCellView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/CheckBoxCellView.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ChildrenCollection`1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ChildrenCollection`1.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Clipboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Clipboard.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ComboBox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ComboBox.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ComboBoxCellView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ComboBoxCellView.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ComboBoxEntry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ComboBoxEntry.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Command.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Command.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ConfirmationMessage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ConfirmationMessage.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ContentPosition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ContentPosition.xml -------------------------------------------------------------------------------- /docs/en/Xwt/DataField.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/DataField.xml -------------------------------------------------------------------------------- /docs/en/Xwt/DataField`1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/DataField`1.xml -------------------------------------------------------------------------------- /docs/en/Xwt/DataRequestDelegate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/DataRequestDelegate.xml -------------------------------------------------------------------------------- /docs/en/Xwt/DataStore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/DataStore.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Dialog.xml -------------------------------------------------------------------------------- /docs/en/Xwt/DialogButton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/DialogButton.xml -------------------------------------------------------------------------------- /docs/en/Xwt/DialogButtonCollection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/DialogButtonCollection.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Distance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Distance.xml -------------------------------------------------------------------------------- /docs/en/Xwt/DragCheckEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/DragCheckEventArgs.xml -------------------------------------------------------------------------------- /docs/en/Xwt/DragDropAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/DragDropAction.xml -------------------------------------------------------------------------------- /docs/en/Xwt/DragDropResult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/DragDropResult.xml -------------------------------------------------------------------------------- /docs/en/Xwt/DragEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/DragEventArgs.xml -------------------------------------------------------------------------------- /docs/en/Xwt/DragFinishedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/DragFinishedEventArgs.xml -------------------------------------------------------------------------------- /docs/en/Xwt/DragOperation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/DragOperation.xml -------------------------------------------------------------------------------- /docs/en/Xwt/DragOverCheckEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/DragOverCheckEventArgs.xml -------------------------------------------------------------------------------- /docs/en/Xwt/DragOverEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/DragOverEventArgs.xml -------------------------------------------------------------------------------- /docs/en/Xwt/EventResult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/EventResult.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Frame.xml -------------------------------------------------------------------------------- /docs/en/Xwt/FrameType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/FrameType.xml -------------------------------------------------------------------------------- /docs/en/Xwt/GenericMessage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/GenericMessage.xml -------------------------------------------------------------------------------- /docs/en/Xwt/HBox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/HBox.xml -------------------------------------------------------------------------------- /docs/en/Xwt/HPaned.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/HPaned.xml -------------------------------------------------------------------------------- /docs/en/Xwt/HScale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/HScale.xml -------------------------------------------------------------------------------- /docs/en/Xwt/HSeparator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/HSeparator.xml -------------------------------------------------------------------------------- /docs/en/Xwt/IBackend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/IBackend.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ICollectionEventSink`1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ICollectionEventSink`1.xml -------------------------------------------------------------------------------- /docs/en/Xwt/IContainerEventSink`1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/IContainerEventSink`1.xml -------------------------------------------------------------------------------- /docs/en/Xwt/IDataField.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/IDataField.xml -------------------------------------------------------------------------------- /docs/en/Xwt/IListDataSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/IListDataSource.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ISpacingListener.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ISpacingListener.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ITransferData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ITransferData.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ITreeDataSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ITreeDataSource.xml -------------------------------------------------------------------------------- /docs/en/Xwt/IWidgetSurface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/IWidgetSurface.xml -------------------------------------------------------------------------------- /docs/en/Xwt/IconSize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/IconSize.xml -------------------------------------------------------------------------------- /docs/en/Xwt/IconTextCellView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/IconTextCellView.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ImageCellView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ImageCellView.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ImageView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ImageView.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ItemCollection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ItemCollection.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ItemSeparator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ItemSeparator.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Key.xml -------------------------------------------------------------------------------- /docs/en/Xwt/KeyEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/KeyEventArgs.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Label.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ListRowEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ListRowEventArgs.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ListRowOrderEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ListRowOrderEventArgs.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ListStore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ListStore.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ListView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ListView.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ListViewColumn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ListViewColumn.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Menu.xml -------------------------------------------------------------------------------- /docs/en/Xwt/MenuButton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/MenuButton.xml -------------------------------------------------------------------------------- /docs/en/Xwt/MenuItem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/MenuItem.xml -------------------------------------------------------------------------------- /docs/en/Xwt/MenuItemCollection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/MenuItemCollection.xml -------------------------------------------------------------------------------- /docs/en/Xwt/MenuItemType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/MenuItemType.xml -------------------------------------------------------------------------------- /docs/en/Xwt/MessageDescription.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/MessageDescription.xml -------------------------------------------------------------------------------- /docs/en/Xwt/MessageDialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/MessageDialog.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ModifierKeys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ModifierKeys.xml -------------------------------------------------------------------------------- /docs/en/Xwt/MouseMovedEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/MouseMovedEventArgs.xml -------------------------------------------------------------------------------- /docs/en/Xwt/NodePosition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/NodePosition.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Notebook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Notebook.xml -------------------------------------------------------------------------------- /docs/en/Xwt/NotebookTab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/NotebookTab.xml -------------------------------------------------------------------------------- /docs/en/Xwt/PackOrigin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/PackOrigin.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Paned.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Paned.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Panel.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Point.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Point.xml -------------------------------------------------------------------------------- /docs/en/Xwt/PopupWindow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/PopupWindow.xml -------------------------------------------------------------------------------- /docs/en/Xwt/QuestionMessage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/QuestionMessage.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Rectangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Rectangle.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ScrollPolicy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ScrollPolicy.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ScrollView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ScrollView.xml -------------------------------------------------------------------------------- /docs/en/Xwt/SelectionMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/SelectionMode.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Separator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Separator.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Size.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Size.xml -------------------------------------------------------------------------------- /docs/en/Xwt/SizeRequestMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/SizeRequestMode.xml -------------------------------------------------------------------------------- /docs/en/Xwt/StockIcons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/StockIcons.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Table.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Table.xml -------------------------------------------------------------------------------- /docs/en/Xwt/TablePlacement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/TablePlacement.xml -------------------------------------------------------------------------------- /docs/en/Xwt/TextCellView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/TextCellView.xml -------------------------------------------------------------------------------- /docs/en/Xwt/TextEntry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/TextEntry.xml -------------------------------------------------------------------------------- /docs/en/Xwt/ToggleButton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/ToggleButton.xml -------------------------------------------------------------------------------- /docs/en/Xwt/TransferDataSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/TransferDataSource.xml -------------------------------------------------------------------------------- /docs/en/Xwt/TransferDataStore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/TransferDataStore.xml -------------------------------------------------------------------------------- /docs/en/Xwt/TransferDataType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/TransferDataType.xml -------------------------------------------------------------------------------- /docs/en/Xwt/TreeNavigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/TreeNavigator.xml -------------------------------------------------------------------------------- /docs/en/Xwt/TreeNodeChildEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/TreeNodeChildEventArgs.xml -------------------------------------------------------------------------------- /docs/en/Xwt/TreeNodeEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/TreeNodeEventArgs.xml -------------------------------------------------------------------------------- /docs/en/Xwt/TreeNodeOrderEventArgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/TreeNodeOrderEventArgs.xml -------------------------------------------------------------------------------- /docs/en/Xwt/TreePosition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/TreePosition.xml -------------------------------------------------------------------------------- /docs/en/Xwt/TreeStore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/TreeStore.xml -------------------------------------------------------------------------------- /docs/en/Xwt/TreeView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/TreeView.xml -------------------------------------------------------------------------------- /docs/en/Xwt/TreeViewStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/TreeViewStatus.xml -------------------------------------------------------------------------------- /docs/en/Xwt/VBox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/VBox.xml -------------------------------------------------------------------------------- /docs/en/Xwt/VPaned.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/VPaned.xml -------------------------------------------------------------------------------- /docs/en/Xwt/VSeparator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/VSeparator.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Widget.xml -------------------------------------------------------------------------------- /docs/en/Xwt/WidgetCollection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/WidgetCollection.xml -------------------------------------------------------------------------------- /docs/en/Xwt/WidgetSize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/WidgetSize.xml -------------------------------------------------------------------------------- /docs/en/Xwt/WidgetSpacing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/WidgetSpacing.xml -------------------------------------------------------------------------------- /docs/en/Xwt/Window.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/Window.xml -------------------------------------------------------------------------------- /docs/en/Xwt/WindowFrame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/WindowFrame.xml -------------------------------------------------------------------------------- /docs/en/Xwt/XwtComponent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/XwtComponent.xml -------------------------------------------------------------------------------- /docs/en/Xwt/XwtObject.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/Xwt/XwtObject.xml -------------------------------------------------------------------------------- /docs/en/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/index.xml -------------------------------------------------------------------------------- /docs/en/ns-Xwt.Backends.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/ns-Xwt.Backends.xml -------------------------------------------------------------------------------- /docs/en/ns-Xwt.Design.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/ns-Xwt.Design.xml -------------------------------------------------------------------------------- /docs/en/ns-Xwt.Drawing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/ns-Xwt.Drawing.xml -------------------------------------------------------------------------------- /docs/en/ns-Xwt.Engine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/ns-Xwt.Engine.xml -------------------------------------------------------------------------------- /docs/en/ns-Xwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/docs/en/ns-Xwt.xml -------------------------------------------------------------------------------- /xwt.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/xwt/HEAD/xwt.snk --------------------------------------------------------------------------------