forked from 12to11/12to11

* 12to11.c (XLMain): Initialize primary selections. Transfer between X and Wayland programs is still incomplete. * Imakefile (SRCS, OBJS): Add primary selection related objects and sources. (primary-selection-unstable-v1.h): (primary-selection-unstable-v1.c): New targets. * README: Update what is not supported. * compositor.h: New prototypes. * data_device.c (XLDataDeviceSendEnter): Handle resource allocation failures. * mime1.awk: Update generated code for changes in target entry structures. * seat.c (SetFocusSurface): Handle focus change for primary selections as well. (FindSurfaceUnder): Cut off fractional portion instead of rounding the given coordinates, so the correct surface is found when the cursor is moved just inside the rightmost pixel. * surface.c (XLSurfaceRunFrameCallbacks): Handle timestamp overflow. * xdata.c (struct _TargetMapping): Rename atom to atom_flag, and use it to store flags. (MappingAtom, MappingFlag, MappingIsNextDuplicate, MappingSetFlag) (MappingUnsetFlag, MappingIs): New macros. (struct _TargetMappingTable): New structure. (Duplicate): New definition. (direct_transfer): Update duplicate types. (mapping_table): New hash table. (HashMimeString, SetupMappingTable): New functions. (FindTranslationForMimeType, Receive): Use the target mapping table to look up targets instead. (CheckDuplicate): New function. (SendOffers): Call CheckDuplicates. (XLInitXData): Set up duplicate relationship between UTF8_STRING and is conversion entry, and the targets mapping table.
34 lines
1.1 KiB
Awk
34 lines
1.1 KiB
Awk
# Wayland compositor running on top of an X serer.
|
|
|
|
# Copyright (C) 2022 to various contributors.
|
|
|
|
# This file is part of 12to11.
|
|
|
|
# 12to11 is free software: you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by the
|
|
# Free Software Foundation, either version 3 of the License, or (at your
|
|
# option) any later version.
|
|
|
|
# 12to11 is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
# for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with 12to11. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
BEGIN {
|
|
print "#define DirectTransferInitializer(table, start) \\"
|
|
i = 0
|
|
}
|
|
|
|
/ ([a-z]+\/[-+.[:alnum:]]+) / { # Leave 2 spaces before and 1 space after
|
|
match ($0, / ([a-z]+\/[-+.[:alnum:]]+) /, array)
|
|
name = array[1]
|
|
gsub (/[[:punct:]]/, "_", name) # Convert to a valid atom name
|
|
printf " table[%d + start].atom_flag = %s;\\\n", i++, name
|
|
}
|
|
|
|
END {
|
|
printf "\n"
|
|
}
|