Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ArticleForm.h « inc « Sloynik « bada_sloynik - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d7fb0ed2fb9f23bb2282ae530af7dc548f3d9f3 (plain)
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
#ifndef ARTICLEFORM_H_
#define ARTICLEFORM_H_

#include <FBase.h>
#include <FUi.h>
#include <FWeb.h>
#include "../../../base/base.hpp"

class SearchForm;

class ArticleForm :
  public Osp::Ui::Controls::Form,
  public Osp::Ui::IActionEventListener
{
public:
  ArticleForm();
  virtual ~ArticleForm();
  bool Initialize(void);

  void MyInit();

  SearchForm * m_pSearchForm;
  Osp::Base::String m_Name;
  Osp::Base::ByteBuffer * m_pBuffer;

// Implementation
protected:
  enum
  {
    ID_SEARCH_SOFTKEY = 100
  };

  Osp::Web::Controls::Web * m_pWeb;

public:
  virtual void OnActionPerformed(const Osp::Ui::Control& source, int actionId);
};

#endif /* ARTICLEFORM_H_ */