OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CFWL_Event
(Results
26 - 45
of
45
) sorted by null
1
2
/external/pdfium/xfa/fwl/
cfwl_widget.h
13
#include "xfa/fwl/
cfwl_event
.h"
70
void OnProcessEvent(
CFWL_Event
* pEvent) override;
143
void DispatchEvent(
CFWL_Event
* pEvent);
cfwl_notedriver.h
15
#include "xfa/fwl/
cfwl_event
.h"
29
void SendEvent(
CFWL_Event
* pNote);
cfwl_combobox.cpp
17
#include "xfa/fwl/
cfwl_event
.h"
342
CFWL_Event
ev(
CFWL_Event
::Type::PreDropDown, this);
535
CFWL_Event
preEvent(
CFWL_Event
::Type::PreDropDown, this);
564
CFWL_Event
postEvent(
CFWL_Event
::Type::PostDropDown, this);
744
void CFWL_ComboBox::OnProcessEvent(
CFWL_Event
* pEvent) {
745
CFWL_Event
::Type type = pEvent->GetType();
746
if (type ==
CFWL_Event
::Type::Scroll)
[
all
...]
cfwl_barcode.cpp
90
void CFWL_Barcode::OnProcessEvent(
CFWL_Event
* pEvent) {
91
if (pEvent->GetType() ==
CFWL_Event
::Type::TextChanged) {
cfwl_combobox.h
58
void OnProcessEvent(
CFWL_Event
* pEvent) override;
cfwl_listbox.h
14
#include "xfa/fwl/
cfwl_event
.h"
48
void OnProcessEvent(
CFWL_Event
* pEvent) override;
cfwl_checkbox.cpp
17
#include "xfa/fwl/
cfwl_event
.h"
221
CFWL_Event
wmCheckBoxState(
CFWL_Event
::Type::CheckStateChanged, this);
cfwl_edit.h
16
#include "xfa/fwl/
cfwl_event
.h"
67
void OnProcessEvent(
CFWL_Event
* pEvent) override;
cfwl_datetimepicker.cpp
13
#include "xfa/fwl/
cfwl_event
.h"
171
CFWL_Event
ev(
CFWL_Event
::Type::EditChanged);
cfwl_widget.cpp
17
#include "xfa/fwl/
cfwl_event
.h"
499
void CFWL_Widget::DispatchEvent(
CFWL_Event
* pEvent) {
613
void CFWL_Widget::OnProcessEvent(
CFWL_Event
* pEvent) {}
cfwl_edit.cpp
23
#include "xfa/fwl/
cfwl_event
.h"
[
all
...]
cfwl_notedriver.cpp
38
void CFWL_NoteDriver::SendEvent(
CFWL_Event
* pNote) {
cfwl_listbox.cpp
703
void CFWL_ListBox::OnProcessEvent(
CFWL_Event
* pEvent) {
706
if (pEvent->GetType() !=
CFWL_Event
::Type::Scroll)
/external/pdfium/xfa/fxfa/app/
xfa_fftextedit.cpp
326
void CXFA_FFTextEdit::OnProcessEvent(
CFWL_Event
* pEvent) {
329
case
CFWL_Event
::Type::TextChanged: {
336
case
CFWL_Event
::Type::TextFull: {
340
case
CFWL_Event
::Type::CheckWord: {
409
void CXFA_FFNumericEdit::OnProcessEvent(
CFWL_Event
* pEvent) {
410
if (pEvent->GetType() ==
CFWL_Event
::Type::Validate) {
667
void CXFA_FFDateTimeEdit::OnProcessEvent(
CFWL_Event
* pEvent) {
668
if (pEvent->GetType() ==
CFWL_Event
::Type::SelectChanged) {
xfa_ffchoicelist.cpp
200
void CXFA_FFListBox::OnProcessEvent(
CFWL_Event
* pEvent) {
203
case
CFWL_Event
::Type::SelectChanged: {
506
void CXFA_FFComboBox::OnProcessEvent(
CFWL_Event
* pEvent) {
509
case
CFWL_Event
::Type::SelectChanged: {
515
case
CFWL_Event
::Type::EditChanged: {
520
case
CFWL_Event
::Type::PreDropDown: {
524
case
CFWL_Event
::Type::PostDropDown: {
xfa_fffield.h
55
void OnProcessEvent(
CFWL_Event
* pEvent) override;
xfa_ffimageedit.cpp
128
void CXFA_FFImageEdit::OnProcessEvent(
CFWL_Event
* pEvent) {
xfa_ffcheckbutton.cpp
291
void CXFA_FFCheckButton::OnProcessEvent(
CFWL_Event
* pEvent) {
294
case
CFWL_Event
::Type::CheckStateChanged: {
xfa_ffpushbutton.cpp
202
void CXFA_FFPushButton::OnProcessEvent(
CFWL_Event
* pEvent) {
xfa_fffield.cpp
709
void CXFA_FFField::OnProcessEvent(
CFWL_Event
* pEvent) {
711
case
CFWL_Event
::Type::Mouse: {
736
case
CFWL_Event
::Type::Click: {
Completed in 1514 milliseconds
1
2