File: rtf_table.h

package info (click to toggle)
musescore 2.3.2%2Bdfsg2-7~deb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 187,932 kB
  • sloc: cpp: 264,610; xml: 176,707; sh: 3,311; ansic: 1,384; python: 356; makefile: 188; perl: 82; pascal: 78
file content (74 lines) | stat: -rw-r--r-- 1,713 bytes parent folder | download | duplicates (15)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#ifndef __RTF_H__
#define __RTF_H__

#include "config.h"
#if defined(_STLP_DEBUG) && defined (__BORLANDC__)
   #include <stdio.h> // Just to make debug version of STLPort work under BC
#endif
#include "common.h"
#include <vector>
#include <cmath>
#include <list>
#include <cstdlib>

struct table_cell
{
   int Rowspan;
   std::string Text;
   table_cell() : Rowspan(0) {}
};

struct table_cell_def
{
   enum valign {valign_top, valign_bottom, valign_center};
   bool BorderTop, BorderBottom, BorderLeft, BorderRight;
   bool *ActiveBorder;
   int Right, Left;
   bool Merged, FirstMerged;
   valign VAlign;
   table_cell_def()
   {
      BorderTop=BorderBottom=BorderLeft=BorderRight=Merged=FirstMerged=false;
      ActiveBorder=NULL;
      Right=Left=0;
      VAlign=valign_top;
   }
   bool right_equals(int x) { return x==Right; }
   bool left_equals(int x) { return x==Left; }
};

template <class T> 
class killing_ptr_vector : public std::vector<T*>
{
 public:
   ~killing_ptr_vector()
   {
      for (typename killing_ptr_vector<T>::iterator i=this->begin(); i!=this->end(); ++i)
         delete *i;
   }
};

typedef killing_ptr_vector<table_cell> table_cells;
typedef killing_ptr_vector<table_cell_def> table_cell_defs;

typedef std::list<table_cell_defs> table_cell_defs_list;

struct table_row
{
   table_cells Cells;
   table_cell_defs_list::iterator CellDefs;
   int Height;
   int Left;
   table_row() : Height(-1000),  Left(-1000) {}
};

class table : public killing_ptr_vector<table_row>
{
 private:
   typedef killing_ptr_vector<table_row> base_class;
 public:
   table() : base_class() {}
   std::string make();
};

#endif