Tweak header a bit

This commit is contained in:
Dave Davenport 2022-11-17 20:46:00 +01:00
parent 9dc80f8f73
commit d4a2a43c73
18 changed files with 19 additions and 17 deletions

View File

@ -24,7 +24,7 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
* *
*/ */
#include <config.h> #include "config.h"
#include "history.h" #include "history.h"
#include "rofi.h" #include "rofi.h"

View File

@ -27,7 +27,7 @@
/** The log domain of this dialog. */ /** The log domain of this dialog. */
#define G_LOG_DOMAIN "Modes.DMenu" #define G_LOG_DOMAIN "Modes.DMenu"
#include <config.h> #include "config.h"
#include "modes/dmenu.h" #include "modes/dmenu.h"
#include "helper.h" #include "helper.h"

View File

@ -28,7 +28,7 @@
/** The log domain of this dialog. */ /** The log domain of this dialog. */
#define G_LOG_DOMAIN "Modes.DRun" #define G_LOG_DOMAIN "Modes.DRun"
#include <config.h> #include "config.h"
#ifdef ENABLE_DRUN #ifdef ENABLE_DRUN
#include <limits.h> #include <limits.h>
#include <stdio.h> #include <stdio.h>

View File

@ -23,7 +23,7 @@
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <config.h> #include "config.h"
#include <errno.h> #include <errno.h>
#include <gio/gio.h> #include <gio/gio.h>
#include <gmodule.h> #include <gmodule.h>

View File

@ -25,7 +25,7 @@
* *
*/ */
#include <config.h> #include "config.h"
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -33,7 +33,7 @@
/** The log domain of this dialog. */ /** The log domain of this dialog. */
#define G_LOG_DOMAIN "Modes.Run" #define G_LOG_DOMAIN "Modes.Run"
#include <config.h> #include "config.h"
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -35,7 +35,7 @@
*/ */
#define G_LOG_DOMAIN "Modes.Ssh" #define G_LOG_DOMAIN "Modes.Ssh"
#include <config.h> #include "config.h"
#include <glib.h> #include <glib.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -28,7 +28,7 @@
/** The log domain of this dialog. */ /** The log domain of this dialog. */
#define G_LOG_DOMAIN "Modes.Window" #define G_LOG_DOMAIN "Modes.Window"
#include <config.h> #include "config.h"
#ifdef WINDOW_MODE #ifdef WINDOW_MODE

View File

@ -27,7 +27,7 @@
/** The log domain of this widget. */ /** The log domain of this widget. */
#define G_LOG_DOMAIN "Widgets.Container" #define G_LOG_DOMAIN "Widgets.Container"
#include <config.h> #include "config.h"
#include "widgets/container.h" #include "widgets/container.h"
#include "theme.h" #include "theme.h"

View File

@ -27,7 +27,7 @@
/** The log domain of this widget. */ /** The log domain of this widget. */
#define G_LOG_DOMAIN "Widgets.Icon" #define G_LOG_DOMAIN "Widgets.Icon"
#include <config.h> #include "config.h"
#include "widgets/icon.h" #include "widgets/icon.h"
#include "theme.h" #include "theme.h"

View File

@ -25,7 +25,7 @@
* *
*/ */
#include <config.h> #include "config.h"
#include <glib.h> #include <glib.h>
#include <widgets/box.h> #include <widgets/box.h>
#include <widgets/icon.h> #include <widgets/icon.h>

View File

@ -25,7 +25,7 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
* *
*/ */
#include <config.h> #include "config.h"
#include "widgets/textbox.h" #include "widgets/textbox.h"
#include "helper-theme.h" #include "helper-theme.h"

View File

@ -24,7 +24,7 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
* *
*/ */
#include <config.h> #include "config.h"
#include "widgets/widget.h" #include "widgets/widget.h"
#include "theme.h" #include "theme.h"

View File

@ -1187,6 +1187,7 @@ static gboolean x11_button_to_nk_bindings_scroll(guint32 x11_button,
static void rofi_key_press_event_handler(xcb_key_press_event_t *xkpe, static void rofi_key_press_event_handler(xcb_key_press_event_t *xkpe,
RofiViewState *state) { RofiViewState *state) {
gchar *text; gchar *text;
g_log("IMDKit", G_LOG_LEVEL_DEBUG, "press handler");
xcb->last_timestamp = xkpe->time; xcb->last_timestamp = xkpe->time;
if (config.xserver_i300_workaround) { if (config.xserver_i300_workaround) {
@ -1371,6 +1372,7 @@ static void main_loop_x11_event_handler_view(xcb_generic_event_t *event) {
xcb_key_press_event_t *xkpe = (xcb_key_press_event_t *)event; xcb_key_press_event_t *xkpe = (xcb_key_press_event_t *)event;
#ifdef XCB_IMDKIT #ifdef XCB_IMDKIT
if (xcb->ic) { if (xcb->ic) {
g_log("IMDKit", G_LOG_LEVEL_DEBUG, "input xim");
xcb_xim_forward_event(xcb->im, xcb->ic, xkpe); xcb_xim_forward_event(xcb->im, xcb->ic, xkpe);
} else } else
#endif #endif

View File

@ -24,7 +24,7 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
* *
*/ */
#include <config.h> #include "config.h"
#include "display.h" #include "display.h"
#include "rofi-icon-fetcher.h" #include "rofi-icon-fetcher.h"

View File

@ -24,7 +24,7 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
* *
*/ */
#include <config.h> #include "config.h"
#include "display.h" #include "display.h"
#include "rofi-icon-fetcher.h" #include "rofi-icon-fetcher.h"
#include "rofi.h" #include "rofi.h"

View File

@ -25,7 +25,7 @@
* *
*/ */
#include <config.h> #include "config.h"
#include "display.h" #include "display.h"
#include "rofi-icon-fetcher.h" #include "rofi-icon-fetcher.h"

View File

@ -25,7 +25,7 @@
* *
*/ */
#include <config.h> #include "config.h"
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h> #include <unistd.h>