EXTENDED to permit images of non-uniform width and height. All images are scaled to be the same height and constrained, side-by-side, to fit along the user-defined \rowfigurewidth.
I am not addressing the links issue, but instead the request for a full page figure. I adapt the "rowfigure" methodology I developed when answering ted's prior question (Extracting commands from environment).
The meat of the work is, inside the sidewaysfigure environment, to build the figure as
\rowfigurewidth{constrained width of rowfigure} ("package" defaults to \textwidth)
\startrowfigure{first image, tikz, or whatever}
\addrowfigure{second image, tikz, or whatever}
... (more rowfigures can be added to the row)
\finishrowfigure
Then, as an argument to \ffigbox, employ \scaledrowfigure{1} and \scaledrowfigure{2} instead of the raw (unscaled) images. Also, as the optional argument to \ffigbox, use [\rowfigwidth{1}] and [\rowfigwidth{2}] to indicate the width of that particular subfigure figure.
Here is the whole code:
\documentclass{report}
\usepackage{tikz}
\usepackage[hyperindex, colorlinks]{hyperref}
\usepackage{caption}
\usepackage[list=on]{subcaption}
\usepackage[figuresright]{rotating} %rotated figures
\usepackage{floatrow} %subfigures
\usepackage{adjustbox}
\usepackage{scalerel}
\usepackage{fp}
\usepackage{stackengine}
\def\stacktype{L}
\usepackage{xcolor}
\newcount\figfracwidthc
\newcount\figwidthc
\newcount\textwidthc
\newcounter{rowfigcount}
\newcounter{rowfigindex}
\newsavebox\compositefig
\newsavebox\subrowfig
\newlength\rowfigwd
\gdef\rowfigwdstring{\textwidth}
\newcommand\rowfigurewidth[1]{\edef\rowfigwdstring{#1}}
\newcommand\startrowfigure[2][0]{%
\sbox\compositefig{#2}%
\edef\rowfigstart{#1}%
\setcounter{rowfigcount}{#1}%
\addtocounter{rowfigcount}{1}%
\expandafter\def\csname rowfig\roman{rowfigcount}\endcsname{#2}%
}
\newcommand\addrowfigure[1]{%
\sbox\compositefig{\scalerel{\usebox{\compositefig}}{$#1$}}%
\addtocounter{rowfigcount}{1}%
\expandafter\def\csname rowfig\roman{rowfigcount}\endcsname{#1}%
}
\newcommand\finishrowfigure{%
\figwidthc=\wd\compositefig%
\setlength{\rowfigwd}{\rowfigwdstring}%
\textwidthc=\rowfigwd%
\FPdiv\scaleratio{\the\textwidthc}{\the\figwidthc}%
\global\edef\scaleratio{\scaleratio}%
\getrowfigwidths%
}
\newcommand\scaledrowfigure[1]{%
\scalebox{\scaleratio}{\scalerel*{%
$\csname rowfig\romannumeral #1\endcsname$}{%
$\csname rowfig\roman{rowfigcount}\endcsname$}}%
}
\newcommand\getrowfigwidths{%
\setcounter{rowfigindex}{\rowfigstart}%
\sbox{\compositefig}{}%
\whiledo{\value{rowfigindex} < \value{rowfigcount}}{%
\stepcounter{rowfigindex}%
\sbox{\subrowfig}{\scaledrowfigure{\arabic{rowfigindex}}}%
\sbox{\compositefig}{%
\usebox{\compositefig}\scaledrowfigure{\arabic{rowfigindex}}}%
\expandafter\xdef\csname rowfigwdARRAY\roman{rowfigindex}\endcsname{%
\the\wd\subrowfig}%
}%
}
\newcommand\rowfigwidth[1]{\csname rowfigwdARRAY\romannumeral #1\endcsname}
\floatsetup{style=ruled,footposition=caption,capposition=bottom} %make graphics look like booktables
\floatsetup[subfigure]{style=plain}
\DeclareCaptionSubType[alph]{figure}
\captionsetup[subfigure]{labelformat=brace,justification=centerlast}
\columnsep=0pt
\begin{document}
\newpage
\begin{sidewaysfigure}[h!]%
\gdef\figone{\fbox{\begin{tikzpicture}\node {\stackunder{Sample 1}{!!!}};\end{tikzpicture}}}%
\gdef\figtwo{\fbox{\begin{tikzpicture}\node {Sample 2xxxx};\end{tikzpicture}}}%
\gdef\figthree{\fbox{\begin{tikzpicture}\node {Sample 3};\end{tikzpicture}}}%
%%% UNCOMMENT NEXT THREE LINES TO TEST WITH RULES OF KNOWN SIZE
%\gdef\figone{\textcolor{red}{\rule{.5in}{1ex}}}%
%\gdef\figtwo{\rule{.3in}{1ex}}%
%\gdef\figthree{\textcolor{blue}{\rule{.2in}{1ex}}}%
\centering%
\ffigbox[\textheight]{%
\rowfigurewidth{\textheight}%
\startrowfigure{\figone}%
\addrowfigure{\figtwo}%
% UNCOMMENT TO TEST THREE BOXES
\addrowfigure{\figthree}%
\finishrowfigure%
\begin{subfloatrow}%
\ffigbox[\rowfigwidth{1}]{\caption{variant a\label{fig:a}}}%
{\scaledrowfigure{1}}%
\ffigbox[\rowfigwidth{2}]{\caption{variant b\label{fig:b}}}%
{\scaledrowfigure{2}}%
% UNCOMMENT NEXT TWO LINES TO TEST THREE BOXES
\ffigbox[\rowfigwidth{3}]{\caption{variant c\label{fig:c}}}%
{\scaledrowfigure{3}}%
\end{subfloatrow}}%
{\caption{flavours \the\textheight}\label{fig}}%
\end{sidewaysfigure}
\newpage
\ref{fig} contains: \ref{fig:a}, \ref{fig:b}
% UNCOMMENT NEXT LINE TO TEST THREE BOXES
, and \ref{fig:c}%
.
\newpage
\listoffigures
\newpage
Test to see if scaled rowfigures span textwidth
\startrowfigure{\figone}
\addrowfigure{\figtwo}
\addrowfigure{\figthree}
\finishrowfigure
\scaledrowfigure{1}%
\scaledrowfigure{2}%
\scaledrowfigure{3}
\rule{\textwidth}{.1ex}
They do.
These were the originals:
\figone\figtwo\figthree
\end{document}

hypcapeither. – ted Jul 29 '13 at 10:41\usepackage[all]{hypcap}to my main document and did not see the improvement. Either I messed up or my main document has something interferring. I am sorry for not testing it with the mwe afterwards. – ted Aug 02 '13 at 06:03