PowerPointRTC  0.5.0
 全て クラス ファイル 関数 変数
PowerPointObject.h
説明を見る。
1 // -*-C++-*-
6 #ifndef PowerPointObject_H
7 #define PowerPointObject_H
8 
9 
10 #define PowerPoint Microsoft::Office::Interop::PowerPoint
11 
12 #include <iostream>
13 #include <string>
14 #include <vector>
15 #include <windows.h>
16 
17 #include "SubFunction.h"
18 
19 
25 {
26 public:
31 
39  void Open(System::String^ fn);
40 
44  void Close();
45 
49  void run();
50 
54  void end();
55 
59  bool gotoSlide(int num);
60 
61 
62 
66  void next();
67 
71  void previous();
72 
76  void drawLine(int bx, int by, int ex, int ey);
77 
81  void eraseDrawing();
82 
83 
84 
85 
86 
87 
88 
89  System::String^ filename;
90  PowerPoint::Application^ ptApplication;
91  PowerPoint::Presentations^ ptPresentations;
92  PowerPoint::Presentation^ ptPresentation;
93  PowerPoint::SlideShowWindow ^ptSlideShowWindow;
94  PowerPoint::SlideShowView ^ptSlideShowView;
102 };
103 
104 
105 
106 #endif