xtd 0.2.0
Loading...
Searching...
No Matches
lcd_style.h
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace xtd {
10 namespace forms {
21 enum class lcd_style {
32 };
33 }
34}
35
37template<> struct xtd::enum_register<xtd::forms::lcd_style> {
38 explicit operator auto() const noexcept {return xtd::enum_collection<xtd::forms::lcd_style> {{xtd::forms::lcd_style::seven_segment_display, "seven_segment_display"}, {xtd::forms::lcd_style::nine_segment_display, "nine_segment_display"}, {xtd::forms::lcd_style::fourteen_segment_display, "fourteen_segment_display"}, {xtd::forms::lcd_style::sixteen_segment_display, "sixteen_segment_display"}, {xtd::forms::lcd_style::dot_matrix_display, "dot_matrix_display"}};}
39};
Represents a dot matrix display class.
Definition dot_matrix_display.h:32
Represents a nine segment display class.
Definition fourteen_segment_display.h:27
Represents a nine segment display class.
Definition nine_segment_display.h:27
Represents a seven segment display class.
Definition seven_segment_display.h:32
Represents a sixteen segment display class.
Definition sixteen_segment_display.h:27
std::vector< xtd::collections::generic::key_value_pair< enum_t, xtd::string > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.h:22
lcd_style
Represent lcd label style used by lcd_label control.
Definition lcd_style.h:21
@ nine_segment_display
Nine segment display style.
@ dot_matrix_display
Dot matrix display style.
@ sixteen_segment_display
Sixteen segment display style.
@ seven_segment_display
Seven segment display style.
@ fourteen_segment_display
Fourteen segment display style.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition xtd_about_box.h:12
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Provides the registration struct for enumerations.
Definition enum_register.h:38