xtd 0.2.0
lcd_style.h
Go to the documentation of this file.
1 #pragma once
5 #include <xtd/enum>
6 
8 namespace xtd {
10  namespace forms {
19  enum class lcd_style {
30  };
31  }
32 }
33 
35 template<> struct xtd::enum_register<xtd::forms::lcd_style> {
36  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"}};}
37 };
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
lcd_style
Represent lcd label style used by lcd_label control.
Definition: lcd_style.h:19
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition: enum_collection.h:19
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
Fourteen segment display style.
Provides the registration struct for enumerations.
Definition: enum_register.h:36
Sixteen segment display style.