aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Utilities/Tango.Protobuf.UI/ExceptionWindow.xaml
blob: 938697ceb799288df5e90fd8a5b6ee72967ea05f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<mahapps:MetroWindow x:Class="Tango.Protobuf.UI.ExceptionWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:mahapps="http://metro.mahapps.com/winfx/xaml/controls"
        xmlns:fa="http://schemas.fontawesome.io/icons/"
        xmlns:local="clr-namespace:Tango.Protobuf.UI"
        mc:Ignorable="d"
        Title="Tango" Height="352" Width="566" WindowStartupLocation="CenterOwner" ShowInTaskbar="False" ShowMaxRestoreButton="False" ShowMinButton="False" Background="#202020" Foreground="Gainsboro" DataContext="{Binding RelativeSource={RelativeSource Self}}" >
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="59"/>
            <RowDefinition Height="210*"/>
        </Grid.RowDefinitions>

        <TextBlock VerticalAlignment="Center" Margin="10" FontSize="16">Compilation Failed</TextBlock>

        <Grid Grid.Row="1" Margin="10">
            <DataGrid ItemsSource="{Binding Issues}" AutoGenerateColumns="False">
                <DataGrid.Columns>
                    <DataGridTemplateColumn Header="#">
                        <DataGridTemplateColumn.CellTemplate>
                            <DataTemplate>
                                <fa:ImageAwesome Icon="ExclamationTriangle" Width="16" Height="16" Foreground="Red"></fa:ImageAwesome>
                            </DataTemplate>
                        </DataGridTemplateColumn.CellTemplate>
                    </DataGridTemplateColumn>
                    <DataGridTemplateColumn Header="Description" Width="*">
                        <DataGridTemplateColumn.CellTemplate>
                            <DataTemplate>
                                <TextBlock Text="{Binding}" TextWrapping="Wrap"></TextBlock>
                            </DataTemplate>
                        </DataGridTemplateColumn.CellTemplate>
                    </DataGridTemplateColumn>
                </DataGrid.Columns>
            </DataGrid>
        </Grid>
    </Grid>
</mahapps:MetroWindow>
the glew library. IF (WIN32) IF(CYGWIN) FIND_PATH( GLEW_INCLUDE_DIR GL/glew.h) FIND_LIBRARY( GLEW_GLEW_LIBRARY glew32 ${OPENGL_LIBRARY_DIR} /usr/lib/w32api /usr/X11R6/lib ) ELSE(CYGWIN) FIND_PATH( GLEW_INCLUDE_DIR GL/glew.h $ENV{GLEW_ROOT_PATH}/include ) FIND_LIBRARY( GLEW_GLEW_LIBRARY NAMES glew glew32 PATHS $ENV{GLEW_ROOT_PATH}/lib ${OPENGL_LIBRARY_DIR} ) ENDIF(CYGWIN) ELSE (WIN32) IF (APPLE) # These values for Apple could probably do with improvement. FIND_PATH( GLEW_INCLUDE_DIR glew.h /System/Library/Frameworks/GLEW.framework/Versions/A/Headers ${OPENGL_LIBRARY_DIR} ) SET(GLEW_GLEW_LIBRARY "-framework GLEW" CACHE STRING "GLEW library for OSX") SET(GLEW_cocoa_LIBRARY "-framework Cocoa" CACHE STRING "Cocoa framework for OSX") ELSE (APPLE) FIND_PATH( GLEW_INCLUDE_DIR GL/glew.h /usr/include/GL /usr/openwin/share/include /usr/openwin/include /usr/X11R6/include /usr/include/X11 /opt/graphics/OpenGL/include /opt/graphics/OpenGL/contrib/libglew ) FIND_LIBRARY( GLEW_GLEW_LIBRARY GLEW /usr/openwin/lib /usr/X11R6/lib ) ENDIF (APPLE) ENDIF (WIN32) SET( GLEW_FOUND "NO" ) IF(GLEW_INCLUDE_DIR) IF(GLEW_GLEW_LIBRARY) # Is -lXi and -lXmu required on all platforms that have it? # If not, we need some way to figure out what platform we are on. SET( GLEW_LIBRARIES ${GLEW_GLEW_LIBRARY} ${GLEW_cocoa_LIBRARY} ) SET( GLEW_FOUND "YES" ) #The following deprecated settings are for backwards compatibility with CMake1.4 SET (GLEW_LIBRARY ${GLEW_LIBRARIES}) SET (GLEW_INCLUDE_PATH ${GLEW_INCLUDE_DIR}) ENDIF(GLEW_GLEW_LIBRARY) ENDIF(GLEW_INCLUDE_DIR) IF(GLEW_FOUND) IF(NOT GLEW_FIND_QUIETLY) MESSAGE(STATUS "Found Glew: ${GLEW_LIBRARIES}") ENDIF(NOT GLEW_FIND_QUIETLY) ELSE(GLEW_FOUND) IF(GLEW_FIND_REQUIRED) MESSAGE(FATAL_ERROR "Could not find Glew") ENDIF(GLEW_FIND_REQUIRED) ENDIF(GLEW_FOUND) MARK_AS_ADVANCED( GLEW_INCLUDE_DIR GLEW_GLEW_LIBRARY GLEW_Xmu_LIBRARY GLEW_Xi_LIBRARY )