File indexing completed on 2024-05-05 04:39:48

0001 /*
0002     SPDX-FileCopyrightText: 2017 Friedrich W. H. Kossebau <kossebau@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KDEVPLATFORM_PLUGIN_IPAGEFOCUS_H
0008 #define KDEVPLATFORM_PLUGIN_IPAGEFOCUS_H
0009 
0010 namespace KDevelop
0011 {
0012 
0013 class IPageFocus
0014 {
0015 public:
0016     virtual ~IPageFocus();
0017 
0018     /**
0019      * Set the keyboard input focus to the first edit widget.
0020      */
0021     virtual void setFocusToFirstEditWidget() = 0;
0022 };
0023 
0024 }
0025 
0026 #endif