Aspose.Tasks for C++
ViewColumn.h
1 #pragma once
2 //-----------------------------------------------------------------------
3 // <copyright file="ViewColumn.cs" company="Aspose Pty Ltd">
4 // Copyright (c) 2002-2025 Aspose Pty Ltd. All Rights Reserved.
5 // </copyright>
6 //-----------------------------------------------------------------------
7 
8 #include <system/string.h>
9 #include <cstdint>
10 
11 #include "aspose.tasks.cpp/aspose_tasks_api_defs.h"
12 
13 namespace Aspose
14 {
15 namespace Tasks
16 {
17 enum class Field;
18 namespace RiskAnalysis
19 {
20 namespace Reporting
21 {
22 template <typename, typename> class KeyValueViewColumn;
23 class PercentileViewColumn;
24 } // namespace Reporting
25 } // namespace RiskAnalysis
26 namespace Saving
27 {
28 class CsvWriter;
29 namespace Excel
30 {
31 namespace OpenXML
32 {
33 class XlsxWriter;
34 } // namespace OpenXML
35 } // namespace Excel
36 class SSWriter;
37 } // namespace Saving
38 namespace Visualization
39 {
40 template <typename> class ApsBaseChartBuilder;
41 class ApsResourceUsageBuilder;
42 class ApsTableBuilder;
43 class ApsTaskUsageBuilder;
44 class ApsUsageBuilderRowLayoutCalculator;
45 class AssignmentViewColumn;
46 class GanttChartColumn;
47 enum class HorizontalStringAlignment;
48 class ITextStyleModificationCallback;
49 class ResourceViewColumn;
50 class RowLayoutCalculator;
51 class UsageViewDetailsColumn;
52 } // namespace Visualization
53 } // namespace Tasks
54 } // namespace Aspose
55 
56 namespace Aspose {
57 
58 namespace Tasks {
59 
60 namespace Visualization {
61 
62 /// <summary>
63 /// Represents a column in a project view.
64 /// </summary>
65 class ASPOSE_TASKS_SHARED_CLASS ViewColumn : public System::Object
66 {
67  typedef ViewColumn ThisType;
68  typedef System::Object BaseType;
69 
70  typedef ::System::BaseTypesInfo<BaseType> ThisTypeBaseTypesInfo;
71  ASPOSE_TASKS_SHARED_RTTI_INFO_DECL();
72 
73  friend class Aspose::Tasks::Saving::Excel::OpenXML::XlsxWriter;
74  friend class RowLayoutCalculator;
75  friend class Aspose::Tasks::Saving::CsvWriter;
76  friend class UsageViewDetailsColumn;
77  friend class Aspose::Tasks::RiskAnalysis::Reporting::PercentileViewColumn;
78  friend class ResourceViewColumn;
79  friend class AssignmentViewColumn;
80  friend class ApsTaskUsageBuilder;
81  friend class Aspose::Tasks::Saving::SSWriter;
82  template<typename FT0, typename FT1> friend class Aspose::Tasks::RiskAnalysis::Reporting::KeyValueViewColumn;
83  friend class ApsResourceUsageBuilder;
84  template<typename FT0> friend class ApsBaseChartBuilder;
85  friend class ApsTableBuilder;
86  friend class GanttChartColumn;
87  friend class ApsUsageBuilderRowLayoutCalculator;
88 
89 public:
90 
91  /// <summary>
92  /// Gets column field.
93  /// <see cref="Field"></see>.
94  /// </summary>
95  ASPOSE_TASKS_SHARED_API virtual Aspose::Tasks::Field get_Field() = 0;
96  /// <summary>
97  /// Sets column field.
98  /// <see cref="Field"></see>.
99  /// </summary>
100  ASPOSE_TASKS_SHARED_API virtual void set_Field(Aspose::Tasks::Field value) = 0;
101  /// <summary>
102  /// Gets the column name.
103  /// </summary>
104  ASPOSE_TASKS_SHARED_API System::String get_Name() const;
105  /// <summary>
106  /// Gets alignment of the text (can be one of the values of the <see cref="HorizontalStringAlignment"></see> enumeration).
107  /// </summary>
108  ASPOSE_TASKS_SHARED_API HorizontalStringAlignment get_StringAlignment() const;
109  /// <summary>
110  /// Sets alignment of the text (can be one of the values of the <see cref="HorizontalStringAlignment"></see> enumeration).
111  /// </summary>
112  ASPOSE_TASKS_SHARED_API void set_StringAlignment(HorizontalStringAlignment value);
113  /// <summary>
114  /// Gets the column width.
115  /// </summary>
116  ASPOSE_TASKS_SHARED_API int32_t get_Width() const;
117  /// <summary>
118  /// Gets the callback which can be used to customize the appearance of the column's cells.
119  /// </summary>
120  ASPOSE_TASKS_SHARED_API const System::SharedPtr<ITextStyleModificationCallback>& get_TextStyleModificationCallback() const;
121  /// <summary>
122  /// Sets the callback which can be used to customize the appearance of the column's cells.
123  /// </summary>
124  ASPOSE_TASKS_SHARED_API void set_TextStyleModificationCallback(const System::SharedPtr<ITextStyleModificationCallback>& value);
125 
126 protected:
127 
128  /// <summary>
129  /// Gets a value indicating whether determines whether a column is a usage view column.
130  /// </summary>
131  ASPOSE_TASKS_SHARED_API bool get_IsUsageDetail() const;
132  /// <summary>
133  /// Sets a value indicating whether determines whether a column is a usage view column.
134  /// </summary>
135  ASPOSE_TASKS_SHARED_API void set_IsUsageDetail(bool value);
136 
137  /// <summary>
138  /// Initializes a new instance of the <see cref="ViewColumn"></see> class.
139  /// </summary>
140  /// <param name="name">the specified column name.</param>
141  /// <param name="width">the specified column width.</param>
142  ASPOSE_TASKS_SHARED_API ViewColumn(const System::String& name, int32_t width);
143 
144  /// <summary>
145  /// Returns a text for the specified object.
146  /// </summary>
147  /// <param name="o">the specified object to get a text for.</param>
148  /// <returns>Returns a text for the object.</returns>
149  ASPOSE_TASKS_SHARED_API virtual System::String GetText(System::SharedPtr<System::Object> o) = 0;
150  #ifdef ASPOSE_GET_SHARED_MEMBERS
151  ASPOSE_TASKS_SHARED_API void GetSharedMembers(System::Object::shared_members_type& result) const override;
152  #endif
153 
154 
155 private:
156 
157  int32_t width;
158  System::String name;
159  HorizontalStringAlignment pr_StringAlignment;
160  System::SharedPtr<ITextStyleModificationCallback> pr_TextStyleModificationCallback;
161  bool pr_IsUsageDetail;
162 
163  System::String get_DebuggerDisplay();
164 
165 };
166 
167 } // namespace Visualization
168 } // namespace Tasks
169 } // namespace Aspose
170 
171 
Project's view class.
Definition: AssignmentViewColumn.h:43
Project's view class
Definition: GanttChartColumn.h:42
Project's view class used in ResourceUsage view and ResourceSheet view.
Definition: ResourceViewColumn.h:42
Represents a column in a project view.
Definition: ViewColumn.h:66
int32_t get_Width() const
Gets the column width.
const System::SharedPtr< ITextStyleModificationCallback > & get_TextStyleModificationCallback() const
Gets the callback which can be used to customize the appearance of the column's cells.
void set_StringAlignment(HorizontalStringAlignment value)
Sets alignment of the text (can be one of the values of the HorizontalStringAlignment enumeration).
void set_TextStyleModificationCallback(const System::SharedPtr< ITextStyleModificationCallback > &value)
Sets the callback which can be used to customize the appearance of the column's cells.
virtual Aspose::Tasks::Field get_Field()=0
Gets column field. Field.
HorizontalStringAlignment get_StringAlignment() const
Gets alignment of the text (can be one of the values of the HorizontalStringAlignment enumeration).
virtual void set_Field(Aspose::Tasks::Field value)=0
Sets column field. Field.
System::String get_Name() const
Gets the column name.
Aspose.
Definition: Asn.h:13